An utterly fantastic project starter template for Django 1.7.
- Production-ready configuration for Static Files, Database Settings, Gunicorn, etc.
- Enhancements to Django's statc file serving functionality via WhiteNoise
- Enhancements to Django's database functionality via django-postgrespool and dj-database-url
To use this project, follow these steps:
- Create your working environment.
- Install Django (
$ pip install django
) - Create a new project using this template
Using this template to create a new Django app is easy::
$ django-admin.py startproject --template=https://github.com/heroku/heroku-django-template/archive/master.zip --name=Procfile helloworld
You can replace helloworld
with your desired project name.
In order to test on your local machine, follow these steps:
- Activate the working environment ('$ source venv/bin/activate')
- Install all packages from requirements.txt ('$ pip install -r requirements.txt')
- Run local server ('$ foreman start')
$ git init
$ git add -A
$ git commit -m 'initial commit'
$ heroku create
$ git push heroku master
$ heroku run python manage.py syncdb