This project is the web frontend for the Frontline project.
- Python 3.4+
- (Recommended) virtualenv and virtualenv wrapper. These get installed on your system globally, then you do the install process below inside a virtualenv
- Install dependencies
pip install -r requirements/dev.txt
- Setup a barebones settings file (tweak it as you like)
echo "from .dev import *" >> frontline/settings/local.py
- Setup database
./manage.py migrate
- Add yourself as a superuser
./manage.py createsuperuser
- Start the server!
./manage.py runserver