linkding/siteroot/settings_prod.py

19 lines
358 B
Python
Raw Normal View History

2019-07-03 15:18:29 +00:00
"""
Production settings for linkding webapp
"""
# Start from development settings
# noinspection PyUnresolvedReferences
from .settings import *
# Turn of debug mode
DEBUG = False
# Turn off SASS compilation
SASS_PROCESSOR_ENABLED = False
ALLOWED_HOSTS = ['*']
# Import custom settings
# noinspection PyUnresolvedReferences
from .settings_custom import *