removed debug settings

This commit is contained in:
Benni Bärmann 2021-05-17 16:34:58 +02:00
parent 60d870ca8d
commit 1b122d8f0d
1 changed files with 2 additions and 2 deletions

View File

@ -44,10 +44,10 @@ def get_secret(setting, secrets=secrets):
SECRET_KEY = get_secret('SECRET_KEY')
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
DEBUG = False
# send mails only to debug mode adress even if in production
MAILTEST = True
MAILTEST = False
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/