Example code for a Django / React guide

Example code for a Django / React setup guide

This branch represents the project before any React stuff has been added.

Setup instructions

# Enter Django project folder
cd backend
# Setup and activate virtualenv
virtualenv env
. env/bin/activate
# Install requirements
pip install -r requirements.txt
# Setup Django
./manage.py migrate
./manage.py runserver
# Then visit http://localhost:8000