aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-11-25 22:45:43 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-11-25 22:45:43 +0100
commitb2618e9404b84cc62d4becb02436233a0d53b375 (patch)
treea31f2dc76d23967fa0243374cf475923a4b7e451 /conf.py
parentUpdated default platform URL (for Heroku...). (diff)
downloadnewspipe-b2618e9404b84cc62d4becb02436233a0d53b375.tar.gz
newspipe-b2618e9404b84cc62d4becb02436233a0d53b375.tar.bz2
newspipe-b2618e9404b84cc62d4becb02436233a0d53b375.zip
Rfactorization. Just a start...
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/conf.py b/conf.py
index abbc5dff..1827a7b3 100644
--- a/conf.py
+++ b/conf.py
@@ -22,8 +22,8 @@ TIME_ZONE = {
}
ON_HEROKU = int(os.environ.get('HEROKU', 0)) == 1
-DEFAULTS = {"platform_url": "https://jarr.herokuapp.com/",
- "admin_email": "root@pyAggr3g470r.localhost",
+DEFAULTS = {"platform_url": "https://JARR.herokuapp.com/",
+ "admin_email": "root@jarr.localhost",
"postmark_api_key": "",
"recaptcha_public_key": "",
"recaptcha_private_key": "",
@@ -39,7 +39,7 @@ DEFAULTS = {"platform_url": "https://jarr.herokuapp.com/",
"http_proxy": "",
"secret": "",
"enabled": "false",
- "notification_email": "pyAggr3g470r@no-reply.com",
+ "notification_email": "jarr@no-reply.com",
"tls": "false",
"ssl": "true",
"host": "0.0.0.0",
bgstack15