aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-05 08:38:30 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-05 08:38:30 +0200
commitbdb8818e04d752eb5d570d9d495e1a7932c31181 (patch)
treea9d3b1e28eeff1c47a8dd3f0dc506238e909f153 /conf.py
parentUpdated revision date. (diff)
downloadnewspipe-bdb8818e04d752eb5d570d9d495e1a7932c31181.tar.gz
newspipe-bdb8818e04d752eb5d570d9d495e1a7932c31181.tar.bz2
newspipe-bdb8818e04d752eb5d570d9d495e1a7932c31181.zip
Added a link to the home to let the user request form an account.
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/conf.py b/conf.py
index 74aa834b..a590c75a 100644
--- a/conf.py
+++ b/conf.py
@@ -34,6 +34,7 @@ if not ON_HEROKU:
config.read("./conf/conf.cfg")
PLATFORM_URL = config.get('misc', 'platform_url')
+ ADMIN_PLATFORM_EMAIL = config.get('misc', 'admin_platform_email')
WHOOSH_ENABLED = True
@@ -60,6 +61,7 @@ if not ON_HEROKU:
else:
PLATFORM_URL = os.environ.get('PLATFORM_URL', 'https://pyaggr3g470r.herokuapp.com/')
+ ADMIN_PLATFORM_EMAIL = os.environ.get('ADMIN_PLATFORM_EMAIL', '')
SQLALCHEMY_DATABASE_URI = os.environ['DATABASE_URL']
bgstack15