From dc00921e9f6090e10eae0387ddfb34ff838c12ad Mon Sep 17 00:00:00 2001 From: "Peter J. Keleher" <keleher@cs.umd.edu> Date: Mon, 30 Sep 2024 11:05:51 -0400 Subject: [PATCH] auto --- assign3.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/assign3.md b/assign3.md index c43b51d..9dc3d04 100644 --- a/assign3.md +++ b/assign3.md @@ -164,15 +164,12 @@ 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.: +- ensure that the DB connections in the `test*.py` files are using a local name rather than vagrant, e.g.: ``` 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. However, note that you still have to use the root version when submitting to gradescope! + +Password for the local name should be the empty password. However, note that you still have to <ul>use the root as password</ul> when submitting to gradescope! Also, be sure you have: ``` -- GitLab