first commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
const app = require("../js/app");
|
||||
const Log = require("../js/logger");
|
||||
|
||||
app.start().then((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}`);
|
||||
});
|
||||
Reference in New Issue
Block a user