From 30f17e4132ab0ae40515afb6c7717d7d4482ede4 Mon Sep 17 00:00:00 2001 From: Elijah Date: Sun, 14 Jan 2024 19:57:13 +0100 Subject: [PATCH] Test to see whether python-decouple is responsible for the errors --- trustchain_idhub/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trustchain_idhub/settings.py b/trustchain_idhub/settings.py index b9eecc5..dc64844 100644 --- a/trustchain_idhub/settings.py +++ b/trustchain_idhub/settings.py @@ -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")