Files
mayan-edms/mayan/settings/development.py
2015-01-19 04:06:40 -04:00

21 lines
356 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',
)
WSGI_AUTO_RELOAD = True