2020-05-03 21:59:55 +02:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
2018-09-14 21:31:01 -04:00
|
|
|
const app = require("./app");
|
2019-02-12 08:36:04 -05:00
|
|
|
const common = require("./common");
|
2018-09-14 21:31:01 -04:00
|
|
|
const http = require("http");
|
2019-04-05 22:52:00 -04:00
|
|
|
var connect = require('./connect').setServerConfiguration(); //Do NOT Remove
|
2018-09-14 21:31:01 -04:00
|
|
|
|
|
|
|
const onError = error => {
|
|
|
|
if (error.syscall !== "listen") {
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
switch (error.code) {
|
|
|
|
case "EACCES":
|
2020-05-09 13:15:10 -04:00
|
|
|
console.error("http://" + (common.host ? common.host : 'localhost') + ":" + common.port + " requires elevated privileges");
|
2018-09-14 21:31:01 -04:00
|
|
|
process.exit(1);
|
|
|
|
break;
|
|
|
|
case "EADDRINUSE":
|
2020-05-09 13:15:10 -04:00
|
|
|
console.error("http://" + (common.host ? common.host : 'localhost') + ":" + common.port + " is already in use");
|
2018-09-14 21:31:01 -04:00
|
|
|
process.exit(1);
|
|
|
|
break;
|
2019-01-01 11:26:51 -05:00
|
|
|
case "ECONNREFUSED":
|
2019-02-13 21:31:26 -05:00
|
|
|
console.error("Server is down/locked");
|
2018-09-14 21:31:01 -04:00
|
|
|
default:
|
2019-01-01 11:26:51 -05:00
|
|
|
console.error("DEFUALT ERROR");
|
|
|
|
console.error(error.code);
|
2018-09-14 21:31:01 -04:00
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const onListening = () => {
|
2020-05-09 13:15:10 -04:00
|
|
|
console.log('Server is up and running, please open the UI at http://' + (common.host ? common.host : 'localhost') + ':' + common.port);
|
2018-09-14 21:31:01 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
const server = http.createServer(app);
|
2020-03-10 13:25:52 -04:00
|
|
|
|
2018-09-14 21:31:01 -04:00
|
|
|
server.on("error", onError);
|
|
|
|
server.on("listening", onListening);
|
2020-05-09 13:15:10 -04:00
|
|
|
if (common.host) {
|
|
|
|
server.listen(common.port, common.host);
|
|
|
|
} else {
|
|
|
|
server.listen(common.port);
|
|
|
|
}
|