Django Development
This is where I’m going to jot down any ideas I’m using about how best to do Django development. Currently I’m developing several sites for various customers, with different Django versions and it’s all getting a bit complicated.
Local Settings File
You can save yourself much grief by allowing the settings file to be overridden locally.
try:
from local_settings import *
except ImportError:
pass
Local Development Environments
Use PYTHONPATH in the apache config to point at the right version of Django