Skip to content

Commit

Permalink
Create gateway.js
Browse files Browse the repository at this point in the history
  • Loading branch information
quericy authored Sep 28, 2020
1 parent 6c79e86 commit 65b6fd2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions gateway.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// gateway.js

'use strict';

const gateway = require('@surgio/gateway');

(async () => {
const app = await gateway.bootstrapServer();
await app.listen(3000, '0.0.0.0');
console.log('> Your app is ready at http://0.0.0.0:3000');
})();

0 comments on commit 65b6fd2

Please sign in to comment.