This is a django template for dorm7
At first, you should make sure you have virtualenv installed. Then create your virtualenv:
virtualenv test_project
Second, you need to enable the virtualenv by
source test_project/bin/activate
To install django, first go to your virtualenv, and then run the following command:
pip install django
To create the project, run the following command:
django-admin.py startproject --template=https://github.com/dorm7/django-project-template/archive/master.zip --extension=py,rst,html test_project
For development:
pip install -r requirements/local.txt
For production:
pip install -r requirements.txt
For heroku:
Use requirements-heroku.txt to replace requirements.txt