Skip to content

Commit

Permalink
add running server log
Browse files Browse the repository at this point in the history
  • Loading branch information
AnkRaiza committed Jan 9, 2019
1 parent 56c3894 commit c415926
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/server.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
const bst = require('bespoken-tools');

const server = new bst.LambdaServer('lib/index.js', 10000, true);
server.start();
server.start(function() {
console.log("Server running on port 10000");
});

0 comments on commit c415926

Please sign in to comment.