aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/config.js b/src/config.js
index e7745b61d..92d456896 100644
--- a/src/config.js
+++ b/src/config.js
@@ -12,6 +12,15 @@ export const CHECK_INTERVAL = ms('1h'); // How often should we perform checks
12export const LOCAL_API = 'http://localhost:3000'; 12export const LOCAL_API = 'http://localhost:3000';
13export const DEV_API = 'https://dev.franzinfra.com'; 13export const DEV_API = 'https://dev.franzinfra.com';
14export const LIVE_API = 'https://api.franzinfra.com'; 14export const LIVE_API = 'https://api.franzinfra.com';
15
16export const LOCAL_WS_API = 'ws://localhost:3000';
17export const DEV_WS_API = 'wss://dev.franzinfra.com';
18export const LIVE_WS_API = 'wss://api.franzinfra.com';
19
20export const LOCAL_API_WEBSITE = 'http://localhost:3333';
21export const DEV_API_WEBSITE = 'https://meetfranz.com';
22export const LIVE_API_WEBSITE = 'https://meetfranz.com';
23
15export const GA_ID = !isDevMode ? 'UA-74126766-10' : 'UA-74126766-12'; 24export const GA_ID = !isDevMode ? 'UA-74126766-10' : 'UA-74126766-12';
16 25
17export const DEFAULT_APP_SETTINGS = { 26export const DEFAULT_APP_SETTINGS = {