aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-04-16 11:48:04 +0200
committerLibravatar GitHub <noreply@github.com>2019-04-16 11:48:04 +0200
commit65c6a5709a5f2acd527ade8dd01031f8dea654c9 (patch)
tree8a49a5e84333fab64dee113da0608e45fdb7ddc1 /src/config.js
parentFix linting issue (diff)
parentincrease app opens to show share franz overlay (diff)
downloadferdium-app-65c6a5709a5f2acd527ade8dd01031f8dea654c9.tar.gz
ferdium-app-65c6a5709a5f2acd527ade8dd01031f8dea654c9.tar.zst
ferdium-app-65c6a5709a5f2acd527ade8dd01031f8dea654c9.zip
Merge branch 'develop' into chore/streamline-dashboard
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.js b/src/config.js
index 92d456896..5bc318545 100644
--- a/src/config.js
+++ b/src/config.js
@@ -9,6 +9,7 @@ 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';
@@ -21,6 +22,8 @@ export const LOCAL_API_WEBSITE = 'http://localhost:3333';
21export const DEV_API_WEBSITE = 'https://meetfranz.com'; 22export const DEV_API_WEBSITE = 'https://meetfranz.com';
22export const LIVE_API_WEBSITE = 'https://meetfranz.com'; 23export const LIVE_API_WEBSITE = 'https://meetfranz.com';
23 24
25export const STATS_API = 'https://stats.franzinfra.com';
26
24export const GA_ID = !isDevMode ? 'UA-74126766-10' : 'UA-74126766-12'; 27export const GA_ID = !isDevMode ? 'UA-74126766-10' : 'UA-74126766-12';
25 28
26export const DEFAULT_APP_SETTINGS = { 29export const DEFAULT_APP_SETTINGS = {