aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
blob: 651f2e17425c3117138a0b1ab9be4cbb038537b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export const CHECK_INTERVAL = 1000 * 3600; // How often should we perform checks
export const LOCAL_API = 'http://localhost:3000';
export const DEV_API = 'https://dev.franzinfra.com';
export const LIVE_API = 'https://api.franzinfra.com';
export const GA_ID = 'UA-74126766-6';

export const DEFAULT_APP_SETTINGS = {
  autoLaunchOnStart: true,
  autoLaunchInBackground: false,
  runInBackground: false,
  enableSystemTray: true,
  minimizeToSystemTray: false,
  locale: 'en-us', // TODO: Replace with proper solution once translations are in
  beta: false,
  isAppMuted: false,
};