Test to see whether python-decouple is responsible for the errors
This commit is contained in:
parent
57538d6320
commit
30f17e4132
|
@ -33,7 +33,7 @@ SECRET_KEY = config('SECRET_KEY')
|
||||||
DEBUG = config('DEBUG', default=False, cast=bool)
|
DEBUG = config('DEBUG', default=False, cast=bool)
|
||||||
DEVELOPMENT = config('DEVELOPMENT', 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())
|
CSRF_TRUSTED_ORIGINS = config('CSRF_TRUSTED_ORIGINS', default=[], cast=Csv())
|
||||||
|
|
||||||
DOMAIN = config("DOMAIN", "http://localhost")
|
DOMAIN = config("DOMAIN", "http://localhost")
|
||||||
|
|
Loading…
Reference in New Issue