Group project for uni software engineering class.
Install python and virtualenv using your favorite package manager.
Set up virtualenv and install dependencies:
virtualenv venv
# on linux:
. venv/bin/activate
# on Windows:
venv/bin/activate.bat
pip install -r requirements.txtRemember to switch to the virtual environment when doing anything with this project
Run the django server with:
python manage.py runserver