git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 046aac8072d15b8432bc90f0510dc3390c41436f

Files: 046aac8072d15b8432bc90f0510dc3390c41436f / api.js

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

Built with git-ssb-web