git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 6d09dd8687c742866f2799345a876eaf0d9f002d

Files: 6d09dd8687c742866f2799345a876eaf0d9f002d / static.js

338 bytesRaw
1require('babel-core/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