Skip to content

Latest commit

 

History

History

example

Example

To run the example application, make sure you have the required packages installed. You can do this using following commands :

mkvirtualenv example
pip install -r example/requirements.txt

This assumes you already have virtualenv and virtualenvwrapper installed and configured.

Next, you can setup the django instance using :

python example/manage.py migrate
python example/manage.py createsuperuser --username=admin --email=admin@example.com

And run it :

python example/manage.py runserver

Good luck!