summaryrefslogtreecommitdiff
path: root/stapp/development.py
diff options
context:
space:
mode:
Diffstat (limited to 'stapp/development.py')
-rw-r--r--stapp/development.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/stapp/development.py b/stapp/development.py
new file mode 100644
index 0000000..b865a6c
--- /dev/null
+++ b/stapp/development.py
@@ -0,0 +1,15 @@
+
+from stapp.settings import *
+DEBUG=True
+TEMPLATE_DEBUG=DEBUG
+
+MIDDLEWARE_CLASSES += (
+ 'debug_toolbar.middleware.DebugToolbarMiddleware',
+)
+
+INSTALLED_APPS += (
+
+ 'debug_toolbar',
+)
+
+INTERNAL_IPS = ('127.0.0.1',)