-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathappConfig.ts
More file actions
22 lines (19 loc) · 706 Bytes
/
appConfig.ts
File metadata and controls
22 lines (19 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export const isDev = false
export const isDevmark = true
export const branch = "beta"
const PORT = '2007'
const MAIN_PORT = 2007
const config = {
PORT,
UPDATE_URL: 'https://s3.pulsesync.dev',
SERVER_URL: isDev ? 'http://localhost:4000' : 'https://ru-node-1.pulsesync.dev',
SERVER_v2_URL: 'https://ru-node-1.pulsesync.dev',
WEBSITE_URL: isDev ? 'http://localhost:3100' : 'https://pulsesync.dev',
S3_URL: 'https://s3.pulsesync.dev',
SOCKET_URL: isDev ? 'http://localhost:1337/' : 'https://ru-node-1.pulsesync.dev/',
RETRY_INTERVAL_MS: 15000,
MAX_RETRY_COUNT: 15,
MAIN_PORT,
BOOSTY_PURCHASE_URL: 'https://boosty.to/evt/purchase/2634425',
}
export default config