aboutsummaryrefslogtreecommitdiff
path: root/src/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-16 07:50:17 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-16 07:50:17 +0100
commit3068763a37193e0affe48608011d86aa25e8de83 (patch)
treeb21fd941e12f55e2e43b1432a8e0cdb5c147371f /src/conf.py
parentIt is again possible (for an administrator) to delete the feed of a user. (diff)
downloadnewspipe-3068763a37193e0affe48608011d86aa25e8de83.tar.gz
newspipe-3068763a37193e0affe48608011d86aa25e8de83.tar.bz2
newspipe-3068763a37193e0affe48608011d86aa25e8de83.zip
I now know why my sessios was always lost on Heroku...
Diffstat (limited to 'src/conf.py')
-rw-r--r--src/conf.py2
1 files changed, 2 insertions, 0 deletions
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')
bgstack15