/django-project-template

Base project template

Primary LanguagePython

Overview

Base project template for use with Django >= 1.4's custom template feature.

Much of the layout and default settings cribbed from Andrew McCloud's django-project-skel.

Usage

Create a virtual environment

mkvirtualenv --no-site-packages {{ project_name }}

Activate virtual environment and install django

pip install django

Create project template

django-admin.py startproject --template=django-project-template {{ project_name }}

Add {{ project_name }} and {{ project_name }}/apps to virtualenv's PYTHONPATH

Configure settings for dev and prod environments