You need to install:
$ virtualenv envRegistration
$ source envRegistration/bin/activate
$ pip install Django
$ pip install -r requirements.txt
Inside project root:
$ python manage.py migrate
Inside project root:
$ python manage.py createsuperuser
Inside project root:
$ python manage.py runserver
We are using Fabric to install / deploy / help developers with rapid commands. This is an updated list of fabric commands:
Option | Description |
---|---|
install | Used to install Django and project requirements |
migrate | Used to create Databases and help with migration |
migrate_app | Used to create a specific database given app-name |
create_admin | Used to create new admin for the project |
start | Used to run the server |