summary refs log tree commit diff stats
path: root/src/index.js
blob: a3e8dea278c0b3b31f280c0b93d52ff477b2e532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'

const config = require('./modules/config.js')

const PORT = process.env.PORT || config.server.port

const app = require('./app.js')

module.exports = app

app.listen(PORT, () => {
  console.log(`App listening on port ${PORT}`)
})