git ssb

3+

gb / docs



Tree: 998fc4b3c7cb550271b2b2a29c1eab1ce28cc4bc

Files: 998fc4b3c7cb550271b2b2a29c1eab1ce28cc4bc / serve.js

222 bytesRaw
1var koa = require('koa')
2var serve = require('koa-static')
3
4var app = koa();
5
6app.use(serve(__dirname + '/static'))
7app.use(serve(__dirname + '/build'))
8
9app.listen(8087)
10console.log('Listening at https://localhost:8087')
11

Built with git-ssb-web