Add an example project with dockerfile - 1st draft

This commit is contained in:
Kevyn Bruyere
2020-08-19 10:20:45 +02:00
parent 5062025381
commit b23fcf2c06
5 changed files with 82 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import * as Koa from 'koa';
const app = new Koa();
app.use(async ctx => {
ctx.body = 'Hello World';
});
app.listen(3000, () => {
console.log('Navigate to http://localhost:3000');
});