-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
45 lines (45 loc) · 1.09 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
45
{
"name": "Zenaton workflow for the \"ETL\" tutorial",
"description": "",
"repository": "https://github.com/zenaton-samples/simple-etl",
"logo": "https://avatars0.githubusercontent.com/u/26751818?s=200&v=4",
"keywords": ["zenaton", "tutorial"],
"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
},
"ZENATON_LISTEN_ARGS": {
"description": "The Zenaton Agent listen args",
"value": "--boot=boot.js --node",
"required": true
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"zenatonworker": {
"quantity": 1,
"size": "free"
}
}
}