CS 7330 - Group Project
Refer to ProjectInstructions.pdf for project details and breakdown.
-
Install Python3
-
Install PostgreSQL
-
Create Database called
programeval -
Create a user with
usernameandpasswordand grant it privileges to the database. -
Setup a virtual environment:
python3 -m venv env -
Activate the virtual environment:
source env/bin/activate -
Create a .env file within the program (file should be located next to this README.md).
-
Update the database environment variables with your username, password, and port.
-
Install all packages:
pip install -r requirements.txt -
Make Migrations:
python3 manage.py makemigrations -
Run Migrations:
python3 manage.py migrate -
Load Data:
python3 manage.py loaddata university/fixtures/*.json -
Run Server:
python3 manage.py runserver