Add debug toolbar to development settings

This commit is contained in:
2012-07-06 19:25:01 +01:00
parent c4bf052379
commit 20b9928463

View File

@@ -51,3 +51,8 @@ MANAGERS = ADMINS
CELERY_ALWAYS_EAGER = True
CELERY_EAGER_PROPAGATES_EXCEPTIONS = True
# Debug Toolbar
INSTALLED_APPS.append('debug_toolbar')
MIDDLEWARE_CLASSES.append('debug_toolbar.middleware.DebugToolbarMiddleware')
INTERNAL_IPS = ['2.101.240.212']