summary refs log tree commit diff stats
path: root/src/index.js
blob: 2c755549f4a4f7f727a0a9b61efc7bdfdba3e0d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"use strict";

const config = require("./modules/config.js");

const PORT = process.env.PORT || config.server.port;
const targetDir = process.argv[2];

if (targetDir) {
  process.chdir(targetDir);
}

const app = require("./app.js");

module.exports = app;

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