explicit start api

This commit is contained in:
Jan Prochazka 2022-06-12 19:42:51 +02:00
parent d34cff234c
commit ae69ca9ebd
4 changed files with 11 additions and 8 deletions

View File

@ -8,4 +8,4 @@ then
echo "$HOST_IP $HOST_DOMAIN" >> /etc/hosts
fi
node bundle.js
node bundle.js --start-api

View File

@ -52,11 +52,11 @@
"uuid": "^3.4.0"
},
"scripts": {
"start": "env-cmd node src/index.js",
"start:portal": "env-cmd -f env/portal/.env node src/index.js",
"start:singledb": "env-cmd -f env/singledb/.env node src/index.js",
"start:filedb": "env-cmd node src/index.js /home/jena/test/chinook/Chinook.db",
"start:singleconn": "env-cmd node src/index.js --server localhost --user root --port 3307 --engine mysql@dbgate-plugin-mysql --password test",
"start": "env-cmd node src/index.js --start-api",
"start:portal": "env-cmd -f env/portal/.env node src/index.js --start-api",
"start:singledb": "env-cmd -f env/singledb/.env node src/index.js --start-api",
"start:filedb": "env-cmd node src/index.js /home/jena/test/chinook/Chinook.db --start-api",
"start:singleconn": "env-cmd node src/index.js --server localhost --user root --port 3307 --engine mysql@dbgate-plugin-mysql --password test --start-api",
"ts": "tsc",
"build": "webpack"
},

View File

@ -8,9 +8,10 @@ if (processArgs.startProcess) {
const proc = require('./proc');
const module = proc[processArgs.startProcess];
module.start();
} else if (!processArgs.checkParent && !global['API_PACKAGE']) {
const main = require('./main');
}
if (processArgs.startApi) {
const main = require('./main');
main.start();
}

View File

@ -11,6 +11,7 @@ const startProcess = getNamedArg('--start-process');
const isForkedApi = process.argv.includes('--is-forked-api');
const pluginsDir = getNamedArg('--plugins-dir');
const workspaceDir = getNamedArg('--workspace-dir');
const startApi = process.argv.includes('--start-api');
function getPassArgs() {
const res = [];
@ -30,4 +31,5 @@ module.exports = {
getPassArgs,
pluginsDir,
workspaceDir,
startApi,
};