Files: 2a3d6d9180c1bf18cc316abc4dd7bac73115a41c / api.js
334 bytesRaw
1 | require('babel-core/register') |
2 | |
3 | const config = require('app/config') |
4 | const createServer = require('app/api').createServer |
5 | const Url = require('url') |
6 | |
7 | const server = createServer(config) |
8 | |
9 | server.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