aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
authorLibravatar Rico Herwig <rherwig4711@gmail.com>2017-10-20 17:26:46 +0200
committerLibravatar GitHub <noreply@github.com>2017-10-20 17:26:46 +0200
commitdd607a2f6176d82b714efbccf92992e429fc2537 (patch)
tree4e948e6e7f18bd38335395be499424b637ecabc4 /src/config.js
parentadds slogan translation (diff)
parentMove linux distribution specific dependencies to /docs (diff)
downloadferdium-app-dd607a2f6176d82b714efbccf92992e429fc2537.tar.gz
ferdium-app-dd607a2f6176d82b714efbccf92992e429fc2537.tar.zst
ferdium-app-dd607a2f6176d82b714efbccf92992e429fc2537.zip
Merge branch 'develop' into feature/translation-de-DE
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/config.js b/src/config.js
index acbf57f3c..0a4856ece 100644
--- a/src/config.js
+++ b/src/config.js
@@ -3,3 +3,13 @@ export const LOCAL_API = 'http://localhost:3000';
3export const DEV_API = 'https://dev.franzinfra.com'; 3export const DEV_API = 'https://dev.franzinfra.com';
4export const LIVE_API = 'https://api.franzinfra.com'; 4export const LIVE_API = 'https://api.franzinfra.com';
5export const GA_ID = 'UA-74126766-6'; 5export const GA_ID = 'UA-74126766-6';
6
7export const DEFAULT_APP_SETTINGS = {
8 autoLaunchOnStart: true,
9 autoLaunchInBackground: false,
10 runInBackground: false,
11 enableSystemTray: true,
12 minimizeToSystemTray: false,
13 locale: 'en-us', // TODO: Replace with proper solution once translations are in
14 beta: false,
15};