Skip to content

Files

Latest commit

 

History

History

example

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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 syncdb --noinput

And run it :

python example/manage.py runserver

Good luck!