-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
30 lines (30 loc) · 1.02 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
{
"name": "Unity versions service",
"description": "A simple service to retrieve revision hash information for a unity version string",
"repository": "https://github.com/Larusso/unity-versions-service",
"success_url": "/",
"keywords": ["rust", "iron", "unity", "versions"],
"website": "https://github.com/Larusso/unity-versions-service",
"env": {
"BUILDPACK_URL": "https://github.com/emk/heroku-buildpack-rust.git",
"UVM_VERSION_UPDATE_REPO_NAME": {
"description": "github repository name for update unitility",
"required": false
},
"UVM_VERSION_UPDATE_REPO_OWNER": {
"description": "github repository owner for update unitility",
"required": false
},
"UVM_VERSION_UPDATE_TOKEN": {
"description": "github token with write access to repository hosting the versions.yml",
"required": false
},
"UVM_VERSION_UPDATE_REPO_BRANCH": {
"description": "optional github branch to push updates to",
"required": false
}
},
"addons": [
"scheduler"
]
}