Development environment functions

This commit is contained in:
geoffsee
2025-08-15 18:59:05 -04:00
commit e289de2bd7
58 changed files with 11955 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
// 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()