forked from themarshallproject/klaxon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (44 loc) · 1.12 KB
/
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
38
39
40
41
42
43
44
{
"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-20",
"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."
},
"DEPLOY_TASKS": {
"value": "db:migrate",
"description": "Space-separated list of tasks to run after each deploy. You shouldn't need to change this."
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
"heroku-postgresql:hobby-dev",
"sendgrid:starter",
"scheduler:standard"
],
"buildpacks": [
{
"url": "heroku/ruby"
},
{
"url": "https://github.com/gunpowderlabs/buildpack-ruby-rake-deploy-tasks"
}
]
}