16 lines
386 B
Python
16 lines
386 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from .development import * # NOQA
|
|
|
|
# Stop debug toolbar patching!
|
|
# see https://github.com/django-debug-toolbar/django-debug-toolbar/issues/524
|
|
DEBUG_TOOLBAR_PATCH_SETTINGS = False
|
|
|
|
INSTALLED_APPS += (
|
|
'debug_toolbar',
|
|
)
|
|
|
|
MIDDLEWARE_CLASSES = (
|
|
'debug_toolbar.middleware.DebugToolbarMiddleware',
|
|
) + MIDDLEWARE_CLASSES
|