diff --git a/gateway.js b/gateway.js new file mode 100644 index 0000000..c296ae4 --- /dev/null +++ b/gateway.js @@ -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'); +})();