Test to see whether python-decouple is responsible for the errors

This commit is contained in:
Elijah 2024-01-14 19:57:13 +01:00
parent 57538d6320
commit 30f17e4132
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ SECRET_KEY = config('SECRET_KEY')
DEBUG = config('DEBUG', default=False, cast=bool)
DEVELOPMENT = config('DEVELOPMENT', default=False, cast=bool)
ALLOWED_HOSTS = config('ALLOWED_HOSTS', default=[], cast=Csv())
ALLOWED_HOSTS = config('ALLOWED_HOSTS', default=[])
CSRF_TRUSTED_ORIGINS = config('CSRF_TRUSTED_ORIGINS', default=[], cast=Csv())
DOMAIN = config("DOMAIN", "http://localhost")