all repos — archive/homestead @ bdd6610208e9fe5971e6aed4378598092f2b9b5a

My future indieweb platform

src/index.js (view raw)

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}`)
})