git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 8839d20da5b689e93b4be966ff279ff8f00cbf06

Files: 8839d20da5b689e93b4be966ff279ff8f00cbf06 / static.js

333 bytesRaw
1require('babel-register')
2
3const config = require('app/config')
4const createServer = require('app/static').createServer
5const Url = require('url')
6
7const server = createServer(config)
8
9server.listen(config.static.port, function () {
10 const staticUrl = Url.format(config.static.url)
11 console.log(`static server at ${staticUrl}`)
12})
13

Built with git-ssb-web