feat(cli): accept argument for site directory Add a script at the same time to enable using the test files for manual testing
1 file changed, 12 insertions(+), 7 deletions(-)
changed files
M src/index.js → src/index.js
@@ -1,13 +1,18 @@ -'use strict' +"use strict"; -const config = require('./modules/config.js') +const config = require("./modules/config.js"); -const PORT = process.env.PORT || config.server.port +const PORT = process.env.PORT || config.server.port; +const targetDir = process.argv[2]; + +if (targetDir) { + process.chdir(targetDir); +} -const app = require('./app.js') +const app = require("./app.js"); -module.exports = app +module.exports = app; app.listen(PORT, () => { - console.log(`App listening on port ${PORT}`) -}) + console.log(`App listening on port ${PORT}`); +});