forked from karlentwistle/dark_knight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
30 lines (30 loc) · 806 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
{
"name": "Dark Knight",
"description": "Automatically restart heroku dynos with R14",
"repository": "https://github.com/karlentwistle/dark_knight",
"logo": "https://node-js-sample.herokuapp.com/node.png",
"keywords": ["r14", "swapping", "restart"],
"buildpacks": [
{
"url": "heroku/ruby"
}
],
"env": {
"DRAIN_PASSWORD": {
"description": "HTTPS drain password.",
"value": ""
},
"APP_ID_OR_NAME": {
"description": "ID or name of Heroku app being monitored - https://{app_id_or_name}.herokuapp.com.",
"value": ""
},
"AUTH_TOKEN": {
"description": "Heroku API authentication token",
"value": ""
},
"DYNO_TYPES": {
"description": "Dynos to restart when swapping (R14)",
"value": "web,worker"
}
}
}