-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.env-cmdrc.json
66 lines (66 loc) · 3.06 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
59
60
61
62
63
64
65
66
{
"local": {
"NODE_ENV": "production",
"REACT_APP_RELEASE_STAGE": "local",
"REACT_APP_EVERGREEN_URL": "http://localhost:9090",
"REACT_APP_GRAPHQL_URL": "http://localhost:9090/graphql/query",
"REACT_APP_LOGKEEPER_URL": "http://localhost:8080",
"REACT_APP_SPRUCE_URL": "http://localhost:3000"
},
"staging": {
"NODE_ENV": "production",
"REACT_APP_RELEASE_STAGE": "staging",
"BUCKET": "parsley-ba3bfbec",
"REACT_APP_EVERGREEN_URL": "https://evergreen-staging.corp.mongodb.com",
"REACT_APP_GRAPHQL_URL": "https://evergreen-staging.corp.mongodb.com/graphql/query",
"REACT_APP_LOGKEEPER_URL": "https://logkeeper2.staging.build.10gen.cc",
"REACT_APP_PARSLEY_URL": "https://parsley-staging.corp.mongodb.com",
"REACT_APP_SPRUCE_URL": "https://spruce-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": "parsley-744ea753",
"REACT_APP_EVERGREEN_URL": "https://evergreen.mongodb.com",
"REACT_APP_GRAPHQL_URL": "https://evergreen.mongodb.com/graphql/query",
"REACT_APP_LOGKEEPER_URL": "https://logkeeper2.build.10gen.cc",
"REACT_APP_PARSLEY_URL": "https://parsley-beta.corp.mongodb.com",
"REACT_APP_SPRUCE_URL": "https://spruce-beta.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": "parsley-0024cada",
"REACT_APP_EVERGREEN_URL": "https://evergreen.mongodb.com",
"REACT_APP_GRAPHQL_URL": "https://evergreen.mongodb.com/graphql/query",
"REACT_APP_LOGKEEPER_URL": "https://logkeeper2.build.10gen.cc",
"REACT_APP_PARSLEY_URL": "https://parsley.mongodb.com",
"REACT_APP_SPRUCE_URL": "https://spruce.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_EVERGREEN_URL": "http://localhost:9090",
"REACT_APP_GRAPHQL_URL": "http://localhost:9090/graphql/query",
"REACT_APP_LOGKEEPER_URL": "http://localhost:8080",
"REACT_APP_SPRUCE_URL": "http://localhost:3000"
},
"devStaging": {
"NODE_ENV": "development",
"REACT_APP_EVERGREEN_URL": "https://evergreen-staging.corp.mongodb.com",
"REACT_APP_GRAPHQL_URL": "https://evergreen-staging.corp.mongodb.com/graphql/query",
"REACT_APP_LOGKEEPER_URL": "https://logkeeper2.staging.build.10gen.cc",
"REACT_APP_SPRUCE_URL": "https://spruce-staging.corp.mongodb.com"
},
"devProduction": {
"NODE_ENV": "development",
"REACT_APP_EVERGREEN_URL": "https://evergreen.mongodb.com",
"REACT_APP_GRAPHQL_URL": "https://evergreen.mongodb.com/graphql/query",
"REACT_APP_LOGKEEPER_URL": "https://logkeeper2.build.10gen.cc",
"REACT_APP_PARSLEY_URL": "http://localhost:5173",
"REACT_APP_SPRUCE_URL": "https://spruce.mongodb.com"
}
}