Separate src dir.
[fnp-django-template.git] / src / project_name / localsettings.py.dev
diff --git a/src/project_name/localsettings.py.dev b/src/project_name/localsettings.py.dev
new file mode 100644 (file)
index 0000000..303bfd7
--- /dev/null
@@ -0,0 +1,12 @@
+DEBUG = True
+ADMINS = MANAGERS = [
+    ('Admin', 'admin@example.com'),
+]
+EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
+
+if False:
+    INSTALLED_APPS += ('debug_toolbar',)
+    MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddleware',)
+    INTERNAL_IPS = ('127.0.0.1',)
+
+SECRET_KEY = 'secret_key'