Official conjure website repository
V2.7.6
Python, PIP
To install other dependencies :
pip install -r requirements.txt
If you don't have the database yet initialize it with :
./manage.py syncdb
If you need to apply some migrations to your existing database :
./manage.py migrate [appname]
If you change data model, don't forget to create the migration :
./manage.py makemigrations [appname]
./manage.py runserver
To run tests locally just run
./manage test
or if you want to test the whole server
./manage testserver
Coming soon...