3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-14 21:31:50 +00:00
zeppelin/backend/start-dev.js
2021-09-11 19:06:51 +03:00

16 lines
454 B
JavaScript

/**
* This file starts the bot and api processes in tandem.
* Used with tsc-watch for restarting on watch.
*/
const childProcess = require("child_process");
const cmd = process.platform === "win32" ? "npm.cmd" : "npm";
childProcess.spawn(cmd, ["run", "start-bot-dev"], {
stdio: [process.stdin, process.stdout, process.stderr],
});
childProcess.spawn(cmd, ["run", "start-api-dev"], {
stdio: [process.stdin, process.stdout, process.stderr],
});