mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
9 lines
331 B
JavaScript
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);
|
|
});
|