44 lines
979 B
JavaScript
44 lines
979 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.DefaultConfiguration = void 0;
|
|
exports.DefaultConfiguration = {
|
|
webServer: {
|
|
port: 6300,
|
|
},
|
|
router: {
|
|
ip: '',
|
|
waitForStartup: true,
|
|
},
|
|
unity: {
|
|
executable: {
|
|
path: '',
|
|
arguments: [],
|
|
startUpDelay: 5000,
|
|
},
|
|
webSocket: {
|
|
ip: '127.0.0.1',
|
|
port: 3000,
|
|
},
|
|
heartbeatInterval: 1000,
|
|
calibrationImageInterval: 2000,
|
|
},
|
|
cameraRunner: {
|
|
webSocket: {
|
|
ip: '127.0.0.1',
|
|
port: 6301,
|
|
},
|
|
pollInterval: 5000,
|
|
},
|
|
twilio: {
|
|
accountSid: '',
|
|
authToken: '',
|
|
fromNumber: '',
|
|
toNumbers: [],
|
|
aggregateTimeout: 15000,
|
|
maxMessagesPerDay: 10,
|
|
},
|
|
support: {
|
|
telephone: '+31613392837',
|
|
},
|
|
};
|
|
//# sourceMappingURL=DefaultConfiguration.js.map
|