Browse Source

settings.py: add import of local_settings.py

pull/1/head
Hidden Z 14 years ago
parent
commit
65a6e6824f
  1. 6
      web/settings.py

6
web/settings.py

@ -96,3 +96,9 @@ INSTALLED_APPS = ( @@ -96,3 +96,9 @@ INSTALLED_APPS = (
# Uncomment the next line to enable the admin:
# 'django.contrib.admin',
)
# include local settings
try:
from local_settings import *
except ImportError:
pass

Loading…
Cancel
Save