aboutsummaryrefslogtreecommitdiff
path: root/app.json
blob: ad7bd5c674781fc8ab8f3b4b7b839f0ab5c969a5 (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": "Newspipe",
  "description": "A news aggregator that can be deployed on Heroku.",
  "keywords": [
    "aggregator",
    "news",
    "RSS"
  ],
  "repository": "https://github.com/newspipe/newspipe.git",
  "logo": "https://raw.githubusercontent.com/newspipe/newspipe/master/src/web/static/img/newspipe.png",
  "scripts": {
    "postdeploy": "python src/manager.py db_create"
  },
  "env": {
    "HEROKU": "1",
    "CDN_ADDRESS": "https://cdn.cedricbonhomme.org/",
    "ADMIN_EMAIL": "root@newspipe.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": "newspipe@no-reply.com",
    "POSTMARK_API_KEY": "REDACTED"
  },
  "addons": [
    "heroku-postgresql:hobby-dev"
  ]
}
bgstack15