add localsettings
[fnp-django-template.git] / project_name / localsettings.py.default
diff --git a/project_name/localsettings.py.default b/project_name/localsettings.py.default
new file mode 100644 (file)
index 0000000..5eb05b6
--- /dev/null
@@ -0,0 +1,10 @@
+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',)