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

This commit is contained in:
Elijah 2024-01-14 19:59:09 +01:00
parent 30f17e4132
commit 22bbba9c69
1 changed files with 1 additions and 1 deletions

View File

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