forked from elastic/opbeans-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
59 lines (59 loc) · 2.01 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
{
"name": "Opbeans",
"description": "Opbeans inventory management system (Elastic APM demo app)",
"logo": "https://pbs.twimg.com/profile_images/700322766168305664/DpqY0ynV.png",
"repository": "https://github.com/elastic/opbeans",
"keywords": ["elastic", "apm", "opbeans", "performance monitoring", "error logging", "release tracking"],
"success_url": "/",
"env": {
"ELASTIC_APM_APP_NAME": {
"description": "Elastic APM App Name for the server app",
"required": false
},
"ELASTIC_APM_SECRET_TOKEN": {
"description": "Elastic APM Secret Token for the server app",
"required": false
},
"ELASTIC_APM_SERVER_URL": {
"description": "Elastic APM Server URL for the server app",
"required": false
},
"WORKLOAD_ELASTIC_APM_APP_NAME": {
"description": "Elastic APM App Name for the workload app",
"required": false
},
"WORKLOAD_ELASTIC_APM_SECRET_TOKEN": {
"description": "Elastic APM Secret Token for the workload app",
"required": false
},
"WORKLOAD_ELASTIC_APM_SERVER_URL": {
"description": "Elastic APM Server URL for the workload app",
"required": false
},
"REACT_APP_OPBEAT_APP_ID": {
"description": "Opbeat App Id for the client app",
"required": false
},
"REACT_APP_OPBEAT_ORG_ID": {
"description": "Opbeat Organization Id for the client app",
"required": false
},
"PGHOST": {
"description": "PostgreSQL server host"
},
"PGPORT": {
"description": "PostgreSQL server port"
},
"PGUSER": {
"description": "PostgreSQL database username"
},
"PGPASSWORD": {
"description": "PostgreSQL database password"
}
},
"addons": [
{
"plan": "heroku-redis:hobby-dev"
}
]
}