mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
7 lines
256 B
JavaScript
7 lines
256 B
JavaScript
var app = require("../js/app.js");
|
|
app.start(function(config) {
|
|
console.log("");
|
|
var bind_address = config.address ? config.address : "localhost";
|
|
console.log("Ready to go! Please point your browser to: http://" + bind_address + ":" + config.port);
|
|
});
|