-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.env-cmdrc.json
58 lines (58 loc) · 2.55 KB
/
.env-cmdrc.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
{
"local": {
"NODE_ENV": "production",
"REACT_APP_RELEASE_STAGE": "local",
"REACT_APP_PARSLEY_URL": "http://localhost:5173",
"REACT_APP_SPRUCE_URL": "http://localhost:3000",
"REACT_APP_UI_URL": "http://localhost:9090"
},
"staging": {
"NODE_ENV": "production",
"REACT_APP_RELEASE_STAGE": "staging",
"BUCKET": "evergreen-staging.spruce",
"REACT_APP_PARSLEY_URL": "https://parsley-staging.corp.mongodb.com",
"REACT_APP_SPRUCE_URL": "https://spruce-staging.corp.mongodb.com",
"REACT_APP_UI_URL": "https://evergreen-staging.corp.mongodb.com",
"REACT_APP_HONEYCOMB_BASE_URL": "https://ui.honeycomb.io/mongodb-4b/environments/staging"
},
"beta": {
"NODE_ENV": "production",
"REACT_APP_RELEASE_STAGE": "beta",
"BUCKET": "evergreen-beta.spruce",
"REACT_APP_PARSLEY_URL": "https://parsley-beta.corp.mongodb.com",
"REACT_APP_SPRUCE_URL": "https://spruce-beta.corp.mongodb.com",
"REACT_APP_UI_URL": "https://evergreen.mongodb.com",
"REACT_APP_SIGNAL_PROCESSING_URL": "https://performance-monitoring-and-analysis.server-tig.prod.corp.mongodb.com",
"REACT_APP_HONEYCOMB_BASE_URL": "https://ui.honeycomb.io/mongodb-4b/environments/production"
},
"production": {
"NODE_ENV": "production",
"REACT_APP_RELEASE_STAGE": "production",
"BUCKET": "evergreen.spruce",
"REACT_APP_PARSLEY_URL": "https://parsley.mongodb.com",
"REACT_APP_SPRUCE_URL": "https://spruce.mongodb.com",
"REACT_APP_UI_URL": "https://evergreen.mongodb.com",
"REACT_APP_SIGNAL_PROCESSING_URL": "https://performance-monitoring-and-analysis.server-tig.prod.corp.mongodb.com",
"REACT_APP_HONEYCOMB_BASE_URL": "https://ui.honeycomb.io/mongodb-4b/environments/production",
"REACT_APP_DEPLOYS_EMAIL": "[email protected]"
},
"devLocal": {
"NODE_ENV": "development",
"REACT_APP_PARSLEY_URL": "http://localhost:5173",
"REACT_APP_SPRUCE_URL": "http://localhost:3000",
"REACT_APP_UI_URL": "http://localhost:9090"
},
"devStaging": {
"NODE_ENV": "development",
"REACT_APP_PARSLEY_URL": "http://parsley-staging.corp.mongodb.com",
"REACT_APP_SPRUCE_URL": "http://localhost:3000",
"REACT_APP_UI_URL": "https://evergreen-staging.corp.mongodb.com"
},
"devProduction": {
"NODE_ENV": "development",
"REACT_APP_PARSLEY_URL": "https://parsley.mongodb.com",
"REACT_APP_SPRUCE_URL": "http://localhost:3000",
"REACT_APP_UI_URL": "https://evergreen.mongodb.com",
"REACT_APP_SIGNAL_PROCESSING_URL": "https://performance-monitoring-and-analysis.server-tig.prod.corp.mongodb.com"
}
}