aboutsummaryrefslogtreecommitdiff
path: root/app.json
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-08-07 23:59:28 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-08-07 23:59:28 +0200
commit580b3dc9ec3cb26ec42bc648a01ac588aa831645 (patch)
treec625e47c4b68784b5ee074f0c551a71c460ce291 /app.json
parentUpdated app.json (diff)
downloadnewspipe-580b3dc9ec3cb26ec42bc648a01ac588aa831645.tar.gz
newspipe-580b3dc9ec3cb26ec42bc648a01ac588aa831645.tar.bz2
newspipe-580b3dc9ec3cb26ec42bc648a01ac588aa831645.zip
Updated app.json
Diffstat (limited to 'app.json')
-rw-r--r--app.json16
1 files changed, 10 insertions, 6 deletions
diff --git a/app.json b/app.json
index 98b81c38..d7cfd521 100644
--- a/app.json
+++ b/app.json
@@ -1,7 +1,11 @@
{
"name": "pyAggr3g470r",
"description": "A news aggregator that can be deployed on Heroku.",
- "keywords": ["aggregator", "news", "RSS"],
+ "keywords": [
+ "aggregator",
+ "news",
+ "RSS"
+ ],
"repository": "https://github.com/cedricbonhomme/pyAggr3g470r",
"logo": "https://raw.githubusercontent.com/cedricbonhomme/pyAggr3g470r/master/pyaggr3g470r/static/img/logo.png",
"scripts": {
@@ -9,12 +13,12 @@
},
"env": {
"HEROKU": "1",
- "WEB_CONCURRENCY": {
- "description": "The number of processes to run.",
- "value": "1"
- }
+ "ADMIN_PLATFORM_EMAIL": "admin@no-reply.org",
+ "RECAPTCHA_PRIVATE_KEY": "REDACTED",
+ "RECAPTCHA_PUBLIC_KEY": "REDACTED",
+ "ADMIN_EMAIL": "admin@no-reply.org"
},
"addons": [
- "heroku-postgresql:dev"
+ "heroku-postgresql:hobby-dev"
]
} \ No newline at end of file
bgstack15