-
Notifications
You must be signed in to change notification settings - Fork 17
/
.env-cmdrc.json
43 lines (43 loc) · 1.79 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
{
"staging": {
"REACT_APP_WSS_URL": "wss://bfx-hf-ui-core.staging.bitfinex.com/ws/",
"REACT_APP_UFX_PUBLIC_API_URL": "https://api-pub.staging.bitfinex.com",
"REACT_APP_UFX_API_URL": "https://api.staging.bitfinex.com",
"REACT_APP_UFX_WSS_URL": "wss://api.staging.bitfinex.com/ws/2",
"REACT_APP_COOKIE_DOMAIN": "staging.bitfinex.com",
"REACT_APP_IS_ELECTRON_APP": "false",
"REACT_APP_ENVIRONMENT": "staging",
"REACT_APP_CHART_URL": "https://bfx-hf-tradingview.staging.bitfinex.com/v0",
"NODE_OPTIONS": "--openssl-legacy-provider"
},
"production": {
"REACT_APP_WSS_URL": "wss://h.bitfinex.com/ws/",
"REACT_APP_UFX_PUBLIC_API_URL": "https://api-pub.bitfinex.com",
"REACT_APP_UFX_API_URL": "https://api.bitfinex.com",
"REACT_APP_UFX_WSS_URL": "wss://api-pub.bitfinex.com/ws/2",
"REACT_APP_IS_ELECTRON_APP": "false",
"REACT_APP_COOKIE_DOMAIN": "bitfinex.com",
"REACT_APP_ENVIRONMENT": "production",
"REACT_APP_CHART_URL": "https://hchart.bitfinex.com/v0",
"SKIP_PREFLIGHT_CHECK": "true",
"NODE_OPTIONS": "--openssl-legacy-provider"
},
"electron": {
"REACT_APP_WSS_URL": "ws://localhost:45000",
"REACT_APP_UFX_PUBLIC_API_URL": "http://localhost:45001",
"REACT_APP_UFX_API_URL": "http://localhost:45001",
"REACT_APP_DS_URL": "ws://localhost:23521",
"REACT_APP_UFX_WSS_URL": "wss://api-pub.bitfinex.com/ws/2",
"REACT_APP_COOKIE_DOMAIN": "staging.bitfinex.com",
"REACT_APP_IS_ELECTRON_APP": "true",
"REACT_APP_CHART_URL": "https://hchart.bitfinex.com/v0",
"SKIP_PREFLIGHT_CHECK": "true",
"NODE_OPTIONS": "--openssl-legacy-provider"
},
"development": {
"REACT_APP_DEV": "true",
"REACT_APP_COOKIE_DOMAIN": "localhost",
"GENERATE_SOURCEMAP": true,
"REACT_APP_SHOW_IN_DEVLOPMENT_MODULES": "true"
}
}