7 lines
256 B
JavaScript
Raw Normal View History

2016-05-03 19:09:38 -04:00
var app = require("../js/app.js");
2016-04-08 22:16:22 +02:00
app.start(function(config) {
2016-05-03 19:09:38 -04:00
console.log("");
2016-11-25 20:20:20 -03:00
var bind_address = config.address ? config.address : "localhost";
console.log("Ready to go! Please point your browser to: http://" + bind_address + ":" + config.port);
2016-04-08 22:16:22 +02:00
});