
A Service for managing projects
-
Start and activate environment
virtualenv env source env/bin/activate -
Run the requirements
pip install -r requirements.txt -
Install the database
python manage.py syncdb python manage.py migrate -
Run the initial data (if required - this is test data only)
python manage.py loaddata data/test.json -
Run the tests to ensure the project is up and running correctly
python manage.py test -
Run the application
python manage.py runserver
##Build the Docs
cd docs
make html
##Auto Build the Docs as you Edit
cd docs
sphinx-autobuild source build/html -p3000