cirlabs / django-project-template

A collection of development tasks and optimizations aimed at anyone doing news application development on tight deadlines in Django.
17 stars 10 forks source link

Add local_settings detection to common.py #20

Closed mikejcorey closed 10 years ago

mikejcorey commented 10 years ago

At the bottom of settings/common.py:

Allow for local (per-user) override

try: from local_settings import * except ImportError: pass