# HG changeset patch # User Tero Marttila # Date 1378077015 -10800 # Node ID dbb8316af0163f8ba6df1e3c4e9c1522d8a2ab99 # Parent 8ca335eab4579748f7c59f2f0a7a4b5790ba92e5 cmpuqrct: development settings for debug toolbar diff -r 8ca335eab457 -r dbb8316af016 cmpuqrct/settings/default.py --- a/cmpuqrct/settings/default.py Sat Aug 31 21:39:02 2013 +0300 +++ b/cmpuqrct/settings/default.py Mon Sep 02 02:10:15 2013 +0300 @@ -1,9 +1,24 @@ # Default settings intended for development use +from cmpuqrct.settings.base import * + ## Error handling DEBUG = True TEMPLATE_DEBUG = DEBUG +## Debug toolbar +MIDDLEWARE_CLASSES += ( + 'debug_toolbar.middleware.DebugToolbarMiddleware', +) + +INSTALLED_APPS += ( + 'debug_toolbar', +) + +INTERNAL_IPS = ( + '127.0.0.1', +) + ## Secrets # Make this unique, and don't share it with anybody. SECRET_KEY = 'wn78diy2()$xy%fapw8aka1hc_8(dbjv*wktfzn6x&rc#1p8x)'