This commit is contained in:
Aevann1 2021-10-27 01:00:56 +02:00
parent d96502458a
commit c760638af1

View file

@ -67,8 +67,6 @@ 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
r=redis.Redis(host=environ.get("REDIS_URL", "redis://0.0.0.0"), decode_responses=True, ssl_cert_reqs=None)