-
Notifications
You must be signed in to change notification settings - Fork 199
/
app.json
37 lines (37 loc) · 875 Bytes
/
app.json
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
29
30
31
32
33
34
35
36
37
{
"name": "Klaxon",
"description": "Watch webpages for newsworthy changes.",
"keywords": [],
"website": "https://github.com/themarshallproject/klaxon",
"repository": "https://github.com/themarshallproject/klaxon",
"success_url": "/",
"stack": "heroku-22",
"scripts": {
"postdeploy": "bash ./postdeploy.sh"
},
"env": {
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies and JWTs.",
"generator": "secret"
},
"ADMIN_EMAILS": {
"description": "A comma-separated list of emails that are administrators. You need at least one."
}
},
"formation": {
"web": {
"quantity": 1,
"size": "eco"
}
},
"addons": [
"heroku-postgresql:mini",
"sendgrid:starter",
"scheduler:standard"
],
"buildpacks": [
{
"url": "heroku/ruby"
}
]
}