generated from sindresorhus/electron-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.js
29 lines (28 loc) · 703 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'use strict'
const Store = require('electron-store')
module.exports = new Store({
defaults: {
automaticUpdates: false,
propresenterIP: '127.0.0.1',
propresenterPort: '49610',
propresenterPassword: '',
switch_PPimages: false,
switch_PPUCase: false,
presentationbridgeHost: '',
presentationbridgePort: '80',
presentationbridgeID: '',
presentationbridgePassword: '',
midirelayIP: '127.0.0.1',
midirelayPort: '4000',
midirelayMIDIPort: 'loopMIDI Port',
companionIP: '127.0.0.1',
companionPort: '51234',
plugin_midirelay: true,
plugin_vista: true,
plugin_http: true,
plugin_companion: true,
switch_mdns: true,
switch_settings: true,
switch_monitor: true,
},
})