aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-11-25 21:33:12 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-11-25 21:33:12 +0100
commit253a8e58a8a7b77d068ed38890b5b5e137c5bfba (patch)
treec0f860e3f40a282da570ed5b093933b7474bb893 /conf.py
parentImproved the way arguments are parsed (usefull for the mobile version of pyAg... (diff)
downloadnewspipe-253a8e58a8a7b77d068ed38890b5b5e137c5bfba.tar.gz
newspipe-253a8e58a8a7b77d068ed38890b5b5e137c5bfba.tar.bz2
newspipe-253a8e58a8a7b77d068ed38890b5b5e137c5bfba.zip
Updated default platform URL (for Heroku...).
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/conf.py b/conf.py
index 73e83eca..abbc5dff 100644
--- a/conf.py
+++ b/conf.py
@@ -22,7 +22,7 @@ TIME_ZONE = {
}
ON_HEROKU = int(os.environ.get('HEROKU', 0)) == 1
-DEFAULTS = {"platform_url": "https://pyaggr3g470r.herokuapp.com/",
+DEFAULTS = {"platform_url": "https://jarr.herokuapp.com/",
"admin_email": "root@pyAggr3g470r.localhost",
"postmark_api_key": "",
"recaptcha_public_key": "",
@@ -31,10 +31,10 @@ DEFAULTS = {"platform_url": "https://pyaggr3g470r.herokuapp.com/",
"api_login": "",
"api_passwd": "",
"default_max_error": "3",
- "log_path": "pyaggr3g470r.log",
+ "log_path": "jarr.log",
"log_level": "info",
- "user_agent": "pyAggr3g470r "
- "(https://bitbucket.org/cedricbonhomme/pyaggr3g470r)",
+ "user_agent": "JARR "
+ "(https://github.com/JARR-aggregator)",
"resolve_article_url": "false",
"http_proxy": "",
"secret": "",
bgstack15