aboutsummaryrefslogtreecommitdiff
path: root/app.json
blob: 41d695c624f368ae1d08dc6da572b84d5e78f105 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  "name": "JARR (Just Another RSS Reader)",
  "description": "A news aggregator that can be deployed on Heroku.",
  "keywords": [
    "aggregator",
    "news",
    "RSS"
  ],
  "repository": "https://github.com/JARR-aggregator/JARR.git",
  "logo": "https://raw.githubusercontent.com/JARR-aggregator/JARR/master/web/static/img/logo.png",
  "scripts": {
    "postdeploy": "python src/manager.py db_create"
  },
  "env": {
    "HEROKU": "1",
    "ADMIN_EMAIL": "root@jarr.localhost",
    "ADMIN_PASSWORD": "password",
    "NOTIFICATION_EMAIL": "JARR@no-reply.com",
    "RECAPTCHA_PRIVATE_KEY": "REDACTED",
    "RECAPTCHA_PUBLIC_KEY": "REDACTED",
    "POSTMARK_API_KEY": "REDACTED"
  },
  "addons": [
    "heroku-postgresql:hobby-dev"
  ]
}
bgstack15