This app is basically just Django, JavaScript, and CSS (SASS)
- Pull the repo and run the Django development server
- This is the easiest way to get started.
- Create a virtual environment
virtualenv venv
and activate it withsource venv/bin/activate
- Inside the virtual environment, run
pip install -r requirements.txt
- Then make migrations with
python manage.py makemigrations
- Then migrate with
python manage.py migrate
- Then run the server with
python manage.py runserver
- Then go to http://localhost:8000