1
0
mirror of https://github.com/pavlobu/deskreen.git synced 2025-06-06 17:50:19 -07:00
deskreen/app/api/config.ts
2020-12-25 01:11:01 +02:00

17 lines
251 B
TypeScript

/* istanbul ignore file */
let host;
let protocol;
let port;
if (!host && !protocol && !port) {
host = '127.0.0.1';
protocol = 'http';
port = 3131; // TODO: read port from signaling server api
}
export default {
host,
port,
protocol,
};