feat(backend): complete AI and business migration

This commit is contained in:
poyrazavsever
2026-07-17 09:12:45 +03:00
parent 42f165b27e
commit 64a5f96872
23 changed files with 1286 additions and 409 deletions
+11
View File
@@ -0,0 +1,11 @@
import { execFileSync } from "node:child_process";
for (const [command, args] of [
[process.execPath, ["scripts/phase7-backend-boundary.mjs"]],
[process.execPath, ["scripts/phase7-domain-smoke.mjs"]],
[process.execPath, ["scripts/phase1-auth-smoke.mjs"]],
]) {
execFileSync(command, args, { cwd: process.cwd(), stdio: "inherit" });
}
console.log("Phase 7 AI and business backend smoke passed.");