mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-05 13:39:24 +08:00
86 lines
2.5 KiB
JavaScript
86 lines
2.5 KiB
JavaScript
/**
|
|
* This file is part of the NocoBase (R) project.
|
|
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
* Authors: NocoBase Team.
|
|
*
|
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
*/
|
|
|
|
const { Command } = require('commander');
|
|
const { isDev, run, postCheck, runInstall, promptForTs } = require('../util');
|
|
const { existsSync, rmSync } = require('fs');
|
|
const { resolve } = require('path');
|
|
const chalk = require('chalk');
|
|
|
|
function deleteSockFiles() {
|
|
const { SOCKET_PATH, PM2_HOME } = process.env;
|
|
if (existsSync(PM2_HOME)) {
|
|
rmSync(PM2_HOME, { recursive: true });
|
|
}
|
|
if (existsSync(SOCKET_PATH)) {
|
|
rmSync(SOCKET_PATH);
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {Command} cli
|
|
*/
|
|
module.exports = (cli) => {
|
|
const { APP_PACKAGE_ROOT, NODE_ARGS } = process.env;
|
|
cli
|
|
.command('start')
|
|
.option('-p, --port [port]')
|
|
.option('-d, --daemon')
|
|
.option('-i, --instances [instances]')
|
|
.option('--db-sync')
|
|
.option('--quickstart')
|
|
.allowUnknownOption()
|
|
.action(async (opts) => {
|
|
if (opts.port) {
|
|
process.env.APP_PORT = opts.port;
|
|
}
|
|
if (process.argv.includes('-h') || process.argv.includes('--help')) {
|
|
promptForTs();
|
|
run('ts-node', [
|
|
'-P',
|
|
process.env.SERVER_TSCONFIG_PATH,
|
|
'-r',
|
|
'tsconfig-paths/register',
|
|
`${APP_PACKAGE_ROOT}/src/index.ts`,
|
|
...process.argv.slice(2),
|
|
]);
|
|
return;
|
|
}
|
|
if (!existsSync(resolve(process.cwd(), `${APP_PACKAGE_ROOT}/lib/index.js`))) {
|
|
console.log('The code is not compiled, please execute it first');
|
|
console.log(chalk.yellow('$ yarn build'));
|
|
console.log('If you want to run in development mode, please execute');
|
|
console.log(chalk.yellow('$ yarn dev'));
|
|
return;
|
|
}
|
|
await postCheck(opts);
|
|
if (!opts.daemon) {
|
|
deleteSockFiles();
|
|
}
|
|
const instances = opts.instances || process.env.CLUSTER_MODE;
|
|
const instancesArgs = instances ? ['-i', instances] : [];
|
|
if (opts.daemon) {
|
|
run('pm2', ['start', ...instancesArgs, `${APP_PACKAGE_ROOT}/lib/index.js`, '--', ...process.argv.slice(2)]);
|
|
} else {
|
|
run(
|
|
'pm2-runtime',
|
|
[
|
|
'start',
|
|
...instancesArgs,
|
|
`${APP_PACKAGE_ROOT}/lib/index.js`,
|
|
NODE_ARGS ? `--node-args="${NODE_ARGS}"` : undefined,
|
|
'--',
|
|
...process.argv.slice(2),
|
|
].filter(Boolean),
|
|
);
|
|
}
|
|
});
|
|
};
|