fix: email backend

This commit is contained in:
Silver Ghost 2022-10-25 17:32:58 +03:00
parent 87fae30544
commit d44bf5ef42
No known key found for this signature in database

View File

@ -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')]