patt/config_example/config.py

33 lines
1.0 KiB
Python
Raw Normal View History

2024-10-10 13:01:42 +02:00
#######################################################################
# Configuration of your django application
#######################################################################
2020-01-31 12:50:42 +01:00
#
2024-10-10 13:01:42 +02:00
# Users library
2020-01-31 12:50:42 +01:00
#
2024-10-10 13:01:42 +02:00
# This enables or disables the self registration
USERS_SELF_REGISTRATION = False
2021-01-19 15:52:50 +01:00
2024-10-10 13:01:42 +02:00
#
# Themes library
#
# This defines the default theme, if no theme is set in the django parameters
DEFAULT_THEME = 'clear-green'
2024-10-10 13:01:42 +02:00
#
# Django
#
# This defines the mode of the running server
2021-01-19 15:52:50 +01:00
# SECURITY WARNING: don't run with debug turned on in production!
2024-10-10 13:01:42 +02:00
DEBUG = False
2021-01-19 15:52:50 +01:00
2024-10-10 13:01:42 +02:00
# This a the secret key for your application.
# SECURITY WARNING: don't run with a dummy secret in production! And don't let others read this key!
SECRET_KEY = None
2021-01-19 15:52:50 +01:00
2024-10-10 13:01:42 +02:00
# This defines the listener hostnames for your django server
2021-01-19 15:52:50 +01:00
# SECURITY WARNING: don't run with '0.0.0.0' in in production, unless you know what you are doing!
2024-10-10 13:01:42 +02:00
# ALLOWED_HOSTS = ['<YOUR_SERVER_HOSTNAME>', ]
2020-01-31 12:50:42 +01:00
2024-10-10 13:01:42 +02:00
# This might be needed for usage in a docker environment
# CSRF_TRUSTED_ORIGINS = ['<YOUR_SERVER_URL>', ]