-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
44 lines (44 loc) · 1.17 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "Zenaton Boilerplate",
"description": "Zenaton Boilerplate",
"repository": "https://github.com/zenaton/zenaton-boilerplate",
"logo": "https://avatars0.githubusercontent.com/u/26751818?s=200&v=4",
"keywords": [],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "zenaton/heroku-buildpack-zenaton"
}
],
"env": {
"ZENATON_APP_ID": {
"description": "The Zenaton Application ID (find it on https://app.zenaton.com/api)",
"required": true
},
"ZENATON_API_TOKEN": {
"description": "The Zenaton API token (find it on https://app.zenaton.com/api)",
"required": true
},
"ZENATON_APP_ENV": {
"description": "The Zenaton environment",
"value": "dev",
"required": true
},
"SLACK_WEBHOOK_URL": {
"description": "The Slack webhook url to use to post notifications",
"required": true
},
"SENDGRID_API_KEY": {
"description": "The SendGrid API key",
"required": true
}
},
"formation": {
"zenatonworker": {
"quantity": 1,
"size": "free"
}
}
}