2021-04-18 14:52:04 +02:00

9 lines
331 B
JavaScript

const app = require("../js/app.js");
const Log = require("logger");
app.start((config) => {
const bindAddress = config.address ? config.address : "localhost";
const httpType = config.useHttps ? "https" : "http";
Log.log("\nReady to go! Please point your browser to: " + httpType + "://" + bindAddress + ":" + config.port);
});