My personal django project template, for use with paster.
This is probably not useful as-is to other people, but hopefully it'll give you a starting point for creating your own, similar template.
This includes buildout project files, a default fabfile for deployments and a webfaction configuration file for webfaction project setup.
Here are the basic steps I take to get started with a new Django project:
mkvirtualenv my_projectmkdir my_projectcd my_projectpip install git+https://paster create -t django_project my_projectcd my_projectgit initpython bootstrap.py./bin/buildout -c devel.cfg- Setup settings.py
./bin/django syncdb --migrate./bin/django runserver