- Aramis Sennyey
- Connor Brett
- Hung Le Ba
- Open the workspace file in the directory in VSCode. You will see two folders, front-end and server.
- Navigate to the "Run and Debug" tab of the VSCode project.
- Run the
Dev (front-end)
andPython: Django (server)
options. - Navigate to
http://localhost:4200
to view the front end andhttp://localhost:8000/swagger
to view the API docs.
To initialize the project, you will have to two sets of commands.
- In the
server
folder, runpython3 -m venv env
, thensource ./env/bin/activate
, and thenpip install -r requirements.txt
. This will install all required packages into a virtual environment. - In the
front-end
folder, runnpm i
.
FAQ
- You may need to run python manage.py collectstatic --no-input to copy static files for serving in PROD.