DRY, make development w/ DDT settings inhering from normal development settings file.

This commit is contained in:
Roberto Rosario
2015-07-06 00:13:17 -04:00
parent a9c7ea7442
commit 3c486e14a1

View File

@@ -1,20 +1,8 @@
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'
)
from .development import * # NOQA
INSTALLED_APPS += (
'rosetta',
'django_extensions',
'debug_toolbar'
)