forked from taskcluster/taskcluster-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
73 lines (72 loc) · 1.24 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "taskcluster-hooks",
"scripts": {
},
"env": {
"AWS_ACCESS_KEY_ID": {
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"required": true
},
"AZURE_ACCOUNT": "jungle",
"DEBUG": "*",
"HOOK_TABLE_NAME": "Hooks",
"NODE_MODULES_CACHE": {
"required": true
},
"OWNER_EMAIL": {
"required": true
},
"PROFILE": {
"required": true
},
"PUBLIC_URL": {
"required": true
},
"PUBLISH_METADATA": "false",
"SENTRY_DSN": {
"required": true
},
"TABLE_CRYPTO_KEY": {
"required": true
},
"TABLE_SIGNING_KEY": {
"required": true
},
"TASKCLUSTER_ACCESS_TOKEN": {
"required": true,
"value": "must set this"
},
"TASKCLUSTER_CLIENT_ID": {
"required": true,
"value": "must set this"
},
"PULSE_USERNAME": {
"required": true,
"value": "must set this"
},
"PULSE_PASSWORD": {
"required": true,
"value": "must set this"
},
"TRUST_PROXY": {
"required": true
}
},
"formation": {
"web": {
"quantity": 1
},
"scheduler": {
"quantity": 1
}
},
"addons": [
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}