mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
16 lines
454 B
JavaScript
16 lines
454 B
JavaScript
/**
|
|
* This file starts the bot and api processes in tandem.
|
|
* Used with tsc-watch for restarting on watch.
|
|
*/
|
|
|
|
import childProcess from "node: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],
|
|
});
|