mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-07 02:48:27 +02:00
19 lines
358 B
Python
19 lines
358 B
Python
"""
|
|
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 *
|