mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-08 11:18:28 +02:00
Create docker image
This commit is contained in:
18
siteroot/settings_prod.py
Normal file
18
siteroot/settings_prod.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""
|
||||
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 *
|
Reference in New Issue
Block a user