mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-04-23 19:16:06 +02:00
9c85e08839
Former-commit-id: 2054b6036d
21 lines
682 B
JavaScript
21 lines
682 B
JavaScript
const { execSync } = require("child_process");
|
|
const path = require("path");
|
|
const fs = require("fs");
|
|
|
|
const backendDir = path.resolve(__dirname, "backend");
|
|
const venvBin = process.platform === "win32"
|
|
? path.join(backendDir, "venv", "Scripts", "python.exe")
|
|
: path.join(backendDir, "venv", "bin", "python3");
|
|
|
|
if (!fs.existsSync(venvBin)) {
|
|
console.error(`[!] Python venv not found at: ${venvBin}`);
|
|
console.error("[!] Run start.sh (Mac/Linux) or start.bat (Windows) first to create the venv.");
|
|
process.exit(1);
|
|
}
|
|
|
|
console.log(`[*] Starting backend with: ${venvBin}`);
|
|
execSync(`"${venvBin}" -m uvicorn main:app --reload`, {
|
|
cwd: backendDir,
|
|
stdio: "inherit",
|
|
});
|