2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2018-06-15 20:31:06 +00:00
|
|
|
const log = require("../log");
|
2018-03-02 18:28:54 +00:00
|
|
|
const colors = require("chalk");
|
2017-07-18 09:36:24 +00:00
|
|
|
const fs = require("fs");
|
|
|
|
const path = require("path");
|
|
|
|
const program = require("commander");
|
|
|
|
const Helper = require("../helper");
|
2017-08-21 05:49:32 +00:00
|
|
|
const Utils = require("./utils");
|
2014-09-09 11:12:23 +00:00
|
|
|
|
|
|
|
program
|
2016-12-15 06:29:44 +00:00
|
|
|
.command("start")
|
2014-09-09 11:12:23 +00:00
|
|
|
.description("Start the server")
|
2019-11-07 20:19:54 +00:00
|
|
|
.option("--dev", "Development mode with hot module reloading")
|
2017-08-21 05:49:32 +00:00
|
|
|
.on("--help", Utils.extraHelp)
|
2020-03-21 20:55:36 +00:00
|
|
|
.action(function (options) {
|
2017-07-18 09:36:24 +00:00
|
|
|
initalizeConfig();
|
|
|
|
|
|
|
|
const server = require("../server");
|
2019-11-07 20:19:54 +00:00
|
|
|
server(options);
|
2014-09-09 11:12:23 +00:00
|
|
|
});
|
2017-07-18 09:36:24 +00:00
|
|
|
|
|
|
|
function initalizeConfig() {
|
2017-12-07 03:54:54 +00:00
|
|
|
if (!fs.existsSync(Helper.getConfigPath())) {
|
2020-03-16 11:53:48 +00:00
|
|
|
fs.mkdirSync(Helper.getHomePath(), {recursive: true});
|
2017-12-07 03:54:54 +00:00
|
|
|
fs.chmodSync(Helper.getHomePath(), "0700");
|
2020-03-16 11:53:48 +00:00
|
|
|
fs.copyFileSync(
|
2019-07-17 09:33:59 +00:00
|
|
|
path.resolve(path.join(__dirname, "..", "..", "defaults", "config.js")),
|
|
|
|
Helper.getConfigPath()
|
|
|
|
);
|
2017-12-07 03:54:54 +00:00
|
|
|
log.info(`Configuration file created at ${colors.green(Helper.getConfigPath())}.`);
|
2017-07-18 09:36:24 +00:00
|
|
|
}
|
|
|
|
|
2022-04-12 00:47:22 +00:00
|
|
|
fs.mkdirSync(Helper.getUsersPath(), {recursive: true, mode: 0o700});
|
2017-07-18 09:36:24 +00:00
|
|
|
}
|