forked from dmathieu/sabayon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
28 lines (28 loc) · 1 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
{
"name": "Sabayon",
"description": "Automated generation and renewal of ACME/Letsencrypt SSL certificates for Heroku apps.",
"website": "https://github.com/dmathieu/sabayon",
"repository": "https://github.com/dmathieu/sabayon",
"env": {
"ACME_DOMAIN": {
"description": "The domains, separated by a comma you wish to generate the certificate for"
},
"ACME_EMAIL": {
"description": "Your email address"
},
"ACME_APP_NAME": {
"description": "The heroku app you wish to add the certificate to"
},
"HEROKU_TOKEN": {
"description": "An heroku access token allowed to write config vars and SSL certificates on ACME_APP_NAME"
},
"RESTART_WAIT_TIME": {
"description": "Seconds to wait for ACME_APP_NAME to restart before completing verification. Long restarts will lead to H12 errors for your app but this may be useful to adjust when using preboot.",
"value": "20"
}
},
"addons": ["scheduler"],
"buildpacks": [
{"url": "heroku/go"}
]
}