From d44bf5ef42e849f15e5b354b89ba7b8ef5278514 Mon Sep 17 00:00:00 2001 From: Dmitriy Lyalyuev Date: Tue, 25 Oct 2022 17:32:58 +0300 Subject: [PATCH] fix: email backend --- later42/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/later42/settings.py b/later42/settings.py index efe8932..8b8ca8d 100644 --- a/later42/settings.py +++ b/later42/settings.py @@ -24,7 +24,7 @@ SECRET_KEY = os.getenv( 'SECRET', 'django-insecure-c%g@wujt4dco#e%k-!25o3)0%t+wm5=k%l(m!kk^p_g%kknod!') # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = os.getenv('DEBUG', 'False') +DEBUG = os.getenv('DEBUG', False) ALLOWED_HOSTS = ['*', os.getenv('DOMAIN')] CSRF_TRUSTED_ORIGINS = ['https://' + os.getenv('DOMAIN', 'localhost')]