forked from mozilla/treeherder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
129 lines (129 loc) · 2.44 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"addons": ["scheduler", "cloudamqp", "heroku-redis"],
"buildpacks": [
{
"url": "https://buildpack-registry.s3.amazonaws.com/buildpacks/edmorley/timestamps.tgz"
},
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
],
"env": {
"BROKER_URL": {
"required": true
},
"BUG_COMMENTER_API_KEY": {
"required": true
},
"BUG_FILER_API_KEY": {
"required": true
},
"CLOUDAMQP_URL": {
"required": true
},
"DATABASE_URL": {
"required": true
},
"GITHUB_CLIENT_ID": {
"required": true
},
"GITHUB_CLIENT_SECRET": {
"required": true
},
"HEROKU_APP_ID": {
"required": true
},
"HEROKU_APP_NAME": {
"required": true
},
"HEROKU_RELEASE_CREATED_AT": {
"required": true
},
"HEROKU_RELEASE_VERSION": {
"required": true
},
"HEROKU_SKIP_NODE_PLUGIN": {
"required": true
},
"HEROKU_SLUG_COMMIT": {
"required": true
},
"HEROKU_SLUG_DESCRIPTION": {
"required": true
},
"NEW_RELIC_API_KEY": {
"required": true
},
"NEW_RELIC_APP_NAME": {
"required": true
},
"NEW_RELIC_CONFIG_FILE": {
"required": true
},
"NEW_RELIC_LICENSE_KEY": {
"required": true
},
"PULSE_PUSH_SOURCES": {
"required": true
},
"PULSE_TASK_SOURCES": {
"required": true
},
"REDIS_URL": {
"required": true
},
"SITE_URL": {
"required": true
},
"TREEHERDER_DJANGO_SECRET_KEY": {
"required": true
},
"YARN_PRODUCTION": {
"required": true
}
},
"formation": {
"pulse_listener_jobs": {
"quantity": 1,
"size": "Standard-1X"
},
"worker_store_pulse_old": {
"quantity": 1,
"size": "Standard-1X"
},
"worker_store_pulse_data": {
"quantity": 1,
"size": "Standard-1X"
},
"pulse_listener_tasks": {
"quantity": 1,
"size": "Standard-1X"
},
"celery_scheduler": {
"quantity": 1,
"size": "Standard-1X"
},
"worker_log_parser": {
"quantity": 1,
"size": "Standard-1X"
},
"worker_misc": {
"quantity": 1,
"size": "Standard-1X"
},
"pulse_listener_pushes": {
"quantity": 1,
"size": "Standard-1X"
},
"web": {
"quantity": 1,
"size": "Standard-1X"
}
},
"name": "treeherder",
"scripts": {},
"stack": "heroku-18"
}