-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
32 lines (32 loc) · 796 Bytes
/
app.json
File metadata and controls
32 lines (32 loc) · 796 Bytes
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
{
"name": "heroku-ci-badge",
"description": "Heroku CI badge generator",
"repository": "https://github.com/gregsadetsky/heroku-ci-badge",
"env": {
"HEROKU_AUTH_TOKEN": {
"description": "To generate a token: heroku authorizations:create -s \"read\" -S -d \"heroku-ci-badge\"",
"value": ""
},
"PIPELINE_ID": {
"description": "UUID of the pipeline for which Heroku CI is enabled",
"value": ""
},
"CACHE_TIMEOUT": {
"description": "Number of seconds to cache the build result (15 minutes by default)",
"value": "900",
"required": false
}
},
"addons": [
"heroku-redis:hobby-dev"
],
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [{
"url": "heroku/python"
}]
}