Files
mayan-edms/mayan/settings/development.py

21 lines
338 B
Python

from __future__ import absolute_import
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