From 3068763a37193e0affe48608011d86aa25e8de83 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 16 Feb 2016 07:50:17 +0100 Subject: I now know why my sessios was always lost on Heroku... --- src/conf.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/conf.py') diff --git a/src/conf.py b/src/conf.py index 628a27d3..d65bb516 100644 --- a/src/conf.py +++ b/src/conf.py @@ -35,6 +35,7 @@ DEFAULTS = {"platform_url": "https://jarr.herokuapp.com/", "log_path": "jarr.log", "log_level": "info", "user_agent": "JARR (https://github.com/JARR-aggregator)", + "secret_key": "", "enabled": "false", "notification_email": "jarr@no-reply.com", "tls": "false", @@ -98,6 +99,7 @@ LOG_LEVEL = {'debug': logging.DEBUG, WEBSERVER_HOST = config.get('webserver', 'host') WEBSERVER_PORT = config.getint('webserver', 'port') +WEBSERVER_SECRET = config.get('webserver', 'secret_key') CDN_ADDRESS = config.get('cdn', 'cdn_address') -- cgit