aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.js
blob: 772caf49508922ce6e88bf529f80d255d5b43c86 (plain)
1
2
3
4
5
6
const process = require('process')
const api = require('./api')

const PORT = process.env.PORT || 8080
api.listen(PORT)
console.log('listening on', PORT)