aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-04-16 11:48:36 +0200
committerLibravatar GitHub <noreply@github.com>2019-04-16 11:48:36 +0200
commit82195efa887767443bb514edad6d04a6f1a6b62e (patch)
tree8a49a5e84333fab64dee113da0608e45fdb7ddc1 /src/config.js
parentincrease app opens to show share franz overlay (diff)
parentMerge branch 'develop' into chore/streamline-dashboard (diff)
downloadferdium-app-82195efa887767443bb514edad6d04a6f1a6b62e.tar.gz
ferdium-app-82195efa887767443bb514edad6d04a6f1a6b62e.tar.zst
ferdium-app-82195efa887767443bb514edad6d04a6f1a6b62e.zip
Merge pull request #1393 from meetfranz/chore/streamline-dashboard
Feature/User Websocket
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/config.js b/src/config.js
index 3b5ce7dda..5bc318545 100644
--- a/src/config.js
+++ b/src/config.js
@@ -9,10 +9,21 @@ const app = process.type === 'renderer' ? electron.remote.app : electron.app;
9const systemPreferences = process.type === 'renderer' ? electron.remote.systemPreferences : electron.systemPreferences; 9const systemPreferences = process.type === 'renderer' ? electron.remote.systemPreferences : electron.systemPreferences;
10 10
11export const CHECK_INTERVAL = ms('1h'); // How often should we perform checks 11export const CHECK_INTERVAL = ms('1h'); // How often should we perform checks
12
12export const LOCAL_API = 'http://localhost:3000'; 13export const LOCAL_API = 'http://localhost:3000';
13export const DEV_API = 'https://dev.franzinfra.com'; 14export const DEV_API = 'https://dev.franzinfra.com';
14export const LIVE_API = 'https://api.franzinfra.com'; 15export const LIVE_API = 'https://api.franzinfra.com';
16
17export const LOCAL_WS_API = 'ws://localhost:3000';
18export const DEV_WS_API = 'wss://dev.franzinfra.com';
19export const LIVE_WS_API = 'wss://api.franzinfra.com';
20
21export const LOCAL_API_WEBSITE = 'http://localhost:3333';
22export const DEV_API_WEBSITE = 'https://meetfranz.com';
23export const LIVE_API_WEBSITE = 'https://meetfranz.com';
24
15export const STATS_API = 'https://stats.franzinfra.com'; 25export const STATS_API = 'https://stats.franzinfra.com';
26
16export const GA_ID = !isDevMode ? 'UA-74126766-10' : 'UA-74126766-12'; 27export const GA_ID = !isDevMode ? 'UA-74126766-10' : 'UA-74126766-12';
17 28
18export const DEFAULT_APP_SETTINGS = { 29export const DEFAULT_APP_SETTINGS = {