Skip to content

Commit

Permalink
Print server URL on start
Browse files Browse the repository at this point in the history
  • Loading branch information
sapegin committed Dec 10, 2017
1 parent 2647d64 commit 9d33b2e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions antwar.bootstrap.js
Expand Up @@ -9,8 +9,12 @@ antwar[environment]({
environment,
antwar: require("./antwar.config"),
webpack: require("./webpack.config"),
}).catch(err => {
console.error(err);
})
.then(() => {
console.log("Server started at http://localhost:3000\n");
})
.catch(err => {
console.error(err);

process.exit(1);
});
process.exit(1);
});

0 comments on commit 9d33b2e

Please sign in to comment.