Merge branch 'master' into openapi-v3

This commit is contained in:
Jens Langhammer 2021-05-16 22:29:39 +02:00
commit ae6a406b1d
1 changed files with 3 additions and 1 deletions

View File

@ -56,7 +56,9 @@ MEDIA_ROOT = BASE_DIR + "/media"
DEBUG = CONFIG.y_bool("debug")
SECRET_KEY = CONFIG.y("secret_key")
if DEBUG:
SECRET_KEY = "9$@r!d^1^jrn#fk#1#@ks#9&i$^s#1)_13%$rwjrhd=e8jfi_s" # noqa Debug # nosec
SECRET_KEY = (
"9$@r!d^1^jrn#fk#1#@ks#9&i$^s#1)_13%$rwjrhd=e8jfi_s" # noqa Debug # nosec
)
INTERNAL_IPS = ["127.0.0.1"]
ALLOWED_HOSTS = ["*"]