mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
7 lines
303 B
JavaScript
7 lines
303 B
JavaScript
var app = require("../js/app.js");
|
|
app.start(function (config) {
|
|
var bindAddress = config.address ? config.address : "localhost";
|
|
var httpType = config.useHttps ? "https" : "http";
|
|
console.log("\nReady to go! Please point your browser to: " + httpType + "://" + bindAddress + ":" + config.port);
|
|
});
|