aboutsummaryrefslogtreecommitdiff
path: root/app.json
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-11-26 18:47:10 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-11-26 18:47:10 +0100
commitd8d46c33dc766b904124eaad2dee5d7964711060 (patch)
treef549b7cd3acfa99425d4c7248e8b431de695bc7f /app.json
parentBug fix in the crawler when logging the creation of articles. (diff)
downloadnewspipe-d8d46c33dc766b904124eaad2dee5d7964711060.tar.gz
newspipe-d8d46c33dc766b904124eaad2dee5d7964711060.tar.bz2
newspipe-d8d46c33dc766b904124eaad2dee5d7964711060.zip
More refactorization.
Diffstat (limited to 'app.json')
-rw-r--r--app.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/app.json b/app.json
index db24a165..cfc03f44 100644
--- a/app.json
+++ b/app.json
@@ -1,5 +1,5 @@
{
- "name": "JARR",
+ "name": "JARR (Just Another RSS Reader)",
"description": "A news aggregator that can be deployed on Heroku.",
"keywords": [
"aggregator",
@@ -7,15 +7,15 @@
"RSS"
],
"repository": "https://github.com/JARR-aggregator/JARR.git",
- "logo": "https://raw.githubusercontent.com/cedricbonhomme/pyAggr3g470r/master/pyaggr3g470r/static/img/logo.png",
+ "logo": "https://raw.githubusercontent.com/JARR-aggregator/JARR/master/web/static/img/logo.png",
"scripts": {
"postdeploy": "python manager.py db_create"
},
"env": {
"HEROKU": "1",
- "ADMIN_EMAIL": "root@pyAggr3g470r.localhost",
+ "ADMIN_EMAIL": "root@jarr.localhost",
"ADMIN_PASSWORD": "password",
- "NOTIFICATION_EMAIL": "pyAggr3g470r@no-reply.com",
+ "NOTIFICATION_EMAIL": "JARR@no-reply.com",
"RECAPTCHA_PRIVATE_KEY": "REDACTED",
"RECAPTCHA_PUBLIC_KEY": "REDACTED",
"POSTMARK_API_KEY": "REDACTED"
bgstack15