aboutsummaryrefslogtreecommitdiff
path: root/app.json
blob: 992d742808b4d04fd5d63bce99ea313a2bd0684a (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
27
28
{
  "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/JARR.git",
  "logo": "https://raw.githubusercontent.com/JARR/JARR/master/src/web/static/img/jarr.png",
  "scripts": {
    "postdeploy": "python src/manager.py db_create"
  },
  "env": {
    "HEROKU": "1",
    "CDN_ADDRESS": "https://cdn.cedricbonhomme.org/",
    "ADMIN_EMAIL": "root@jarr.localhost",
    "ADMIN_PASSWORD": "password",
    "SECRET_KEY": "a secret token only you know in order to use sessions",
    "TOKEN_VALIDITY_PERIOD": 3600,
    "SECURITY_PASSWORD_SALT": "a secret to confirm user account",
    "NOTIFICATION_EMAIL": "JARR@no-reply.com",
    "POSTMARK_API_KEY": "REDACTED"
  },
  "addons": [
    "heroku-postgresql:hobby-dev"
  ]
}
bgstack15