Files
mayan-edms/mayan/settings/development.py
2018-04-29 23:14:55 -04:00

23 lines
437 B
Python

from __future__ import absolute_import, unicode_literals
from . import * # NOQA
ALLOWED_HOSTS = ['*']
DEBUG = True
CELERY_ALWAYS_EAGER = True
CELERY_EAGER_PROPAGATES_EXCEPTIONS = CELERY_ALWAYS_EAGER
INSTALLED_APPS += (
'rosetta',
'django_extensions',
)
TEMPLATES[0]['OPTIONS']['loaders'] = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)
WSGI_AUTO_RELOAD = True