Place this snippet at the bottom of your settings.py file, and if a local_settings.py file is present in the directory, all settings in that file will override those in settings.py
1 2 3 4 | try:
from local_settings import *
except ImportError, exp:
pass
|
More like this
- find even number by Rajeev529 2 months, 2 weeks ago
- Form field with fixed value by roam 3 months, 1 week ago
- New Snippet! by Antoliny0919 3 months, 2 weeks ago
- Add Toggle Switch Widget to Django Forms by OgliariNatan 6 months, 1 week ago
- get_object_or_none by azwdevops 10 months ago
Comments
Ah, that's perfect! Much more elegant than my method... which is too embarrassing to mention here.
#
Please login first before commenting.