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_project
mkdir my_project
cd my_project
pip install git+https://
paster create -t django_project my_project
cd my_project
git init
python bootstrap.py
./bin/buildout -c devel.cfg
- Setup settings.py
./bin/django syncdb --migrate
./bin/django runserver