Skip to content
Snippets Groups Projects
Commit 6bc5af4a authored by Peter J. Keleher's avatar Peter J. Keleher
Browse files

auto

parent 74c98d66
No related branches found
No related tags found
No related merge requests found
...@@ -166,6 +166,22 @@ already been defined (but not populated). In other words, clear out the table an ...@@ -166,6 +166,22 @@ already been defined (but not populated). In other words, clear out the table an
within class definitions (or ensure that proper indentation is maintained by adding spaces). within class definitions (or ensure that proper indentation is maintained by adding spaces).
## Native mac / non-vagrant instrutions
On an apple-silicon mac you must:
- ensure python3/pip3 are installed
- `sudo pip3 install psycopg2`
- `sudo pip3 install peewee`
- ensure that the DB connections in the `test*.py` files are using a local name rather than vagrant, i.e.:
```
conn = psycopg2.connect("dbname=flightsskewed user=keleher")
```
instead of:
```
conn = psycopg2.connect("dbname=flightsskewed user=vagrant password=vagrant")
```
Password for the local name should be the empty password.
## Submit Instructions ## Submit Instructions
Submit `psy.py` and `orm.py` files by compressing (zip: on a mac Submit `psy.py` and `orm.py` files by compressing (zip: on a mac
select them both and right-click "select") them to an archive with two select them both and right-click "select") them to an archive with two
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment