2020-06-02 15:03:59 +02:00

9 lines
342 B
JavaScript

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