Backend deploy can found here
Website can be found here
This backend works with django 3.0.6 and python 3.7
- First create a virtual environment for python3 with
python3 -m venv ve
Name it ve
or if you decide to name it something else, remember to never commit the
virtual enviroment folder.
- Enter the virtual environment
source ve/bin/activate
- Install the dependencies if it's your first time installing it
pip install -r requirements.txt
- Download dataset
./download_dataset.sh
- Enter the virtual environment
source ve/bin/activate
- Now run with
python manage.py runserver
or
./runserver.sh
- Stopping
Stop the server with CTRL+C
and exit the virtual env with
deactivate