Files
cluster/packages/scripts/legacy/deploy.ts
2025-08-15 18:59:10 -04:00

14 lines
464 B
TypeScript
Executable File

// Legacy: not used
// Intended to run the entire deployment process and generate artifacts for client applications without requiring developer intervention
// #!/usr/bin/env bun
//
// import {execSync} from "child_process";
//
// function deployCdktf() {
// execSync("cdktf deploy --auto-approve", {stdio: "inherit"})
// execSync("./extract-outputs.ts", {stdio: "inherit"})
// execSync("./update-vars.ts", {stdio: "inherit"})
// }
//
// deployCdktf()