all repos — archive/homestead @ e7b08b1dfe3f2a2596deb6e2a72bb79805d3708f

My future indieweb platform

src/index.js (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"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");

(async function() {
  try {
    (await app()).listen(PORT, () => {
      console.log(`App listening on port ${PORT}`);
    });
  } catch (error) {
    console.error("App startup error", error);
  }
})();