From 1b122d8f0d9e95fa6db1d48d44c5f337aeff6117 Mon Sep 17 00:00:00 2001 From: Benni Baermann Date: Mon, 17 May 2021 16:34:58 +0200 Subject: [PATCH] removed debug settings --- eva/settings_production.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eva/settings_production.py b/eva/settings_production.py index 6eb0e86..de205c5 100644 --- a/eva/settings_production.py +++ b/eva/settings_production.py @@ -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/