28 lines
619 B
Python
28 lines
619 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from . import * # NOQA
|
|
|
|
DEBUG = True
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
TEMPLATE_LOADERS = (
|
|
'django.template.loaders.filesystem.Loader',
|
|
'django.template.loaders.app_directories.Loader'
|
|
)
|
|
|
|
INSTALLED_APPS += (
|
|
'rosetta',
|
|
'django_extensions',
|
|
'debug_toolbar'
|
|
)
|
|
|
|
# Stop debug toolbar patching!
|
|
# see https://github.com/django-debug-toolbar/django-debug-toolbar/issues/524
|
|
DEBUG_TOOLBAR_PATCH_SETTINGS = False
|
|
|
|
WSGI_AUTO_RELOAD = True
|
|
|
|
MIDDLEWARE_CLASSES = ('debug_toolbar.middleware.DebugToolbarMiddleware',) + MIDDLEWARE_CLASSES
|