From c00a490657711b6fbed0fb5d8e9e9967865c7403 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Wed, 27 Oct 2021 00:55:38 +0200 Subject: [PATCH] fds --- files/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/__main__.py b/files/__main__.py index 91489480c..7cb8ed812 100755 --- a/files/__main__.py +++ b/files/__main__.py @@ -66,8 +66,8 @@ app.config['MAIL_PORT'] = 587 app.config['MAIL_USE_TLS'] = True app.config['MAIL_USERNAME'] = environ.get("MAIL_USERNAME", "").strip() app.config['MAIL_PASSWORD'] = environ.get("MAIL_PASSWORD", "").strip() -# app.config['TEMPLATES_AUTO_RELOAD'] = True -# app.config['DEBUG'] = True +app.config['TEMPLATES_AUTO_RELOAD'] = True +app.config['DEBUG'] = True r=redis.Redis(host=environ.get("REDIS_URL", "redis://0.0.0.0"), decode_responses=True, ssl_cert_reqs=None)