Files: 8d668726e7d11fcdfc803f3c47ed305680c7194f / static.js
307 bytesRaw
1 | const config = require('app/config') |
2 | const createStatic = require('app/static') |
3 | const Url = require('url') |
4 | |
5 | const server = createStatic(config) |
6 | |
7 | server.listen(config.static.url.port, function () { |
8 | const staticUrl = Url.format(config.static.url) |
9 | console.log(`static server listening at ${staticUrl}`) |
10 | }) |
11 |
Built with git-ssb-web