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