forked from tiararosebiezetta/HerokuDynoSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
27 lines (27 loc) · 979 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
{
"name": "Heroku Dyno Switcher",
"description": "A little script to switch dynos between apps and accounts",
"repository": "https://github.com/tiararosebiezetta/HerokuDynoSwitcher",
"env": {
"FIRST_PROCESSTYPE": {
"description": "The process type of your app, you can use web, worker or something else. Check it in the Resources tab of your heroku app.",
"required": false
},
"FIRST_A_APPNAME": {
"description": "The app name of your primary app.",
"required": false
},
"FIRST_A_APIKEY": {
"description": "The API key of the heroku account your primary app is in. Check it in your heroku settings, in the last of the page.",
"required": false
},
"FIRST_B_APPNAME": {
"description": "The app name of your secondary app.",
"required": false
},
"FIRST_B_APIKEY": {
"description": "The API key of the heroku account your secondary app is in. Check it in your heroku settings, in the last of the page.",
"required": false
}
}
}