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