IAM, package, luggage, app health, rate limit, and more

This commit is contained in:
Stephanos A
2026-06-24 14:02:51 +03:00
parent e10b013b62
commit 86760933e8
63 changed files with 3475 additions and 280 deletions

View File

@@ -0,0 +1,20 @@
#!/usr/bin/env node
const { spawnSync } = require("child_process");
const path = require("path");
const tsNodeBin = require.resolve("ts-node/dist/bin.js");
const typeormCli = require.resolve("typeorm/cli.js");
const dataSource = path.resolve(__dirname, "../src/typeorm.config.ts");
const args = [
tsNodeBin,
"-r",
"tsconfig-paths/register",
typeormCli,
"-d",
dataSource,
...process.argv.slice(2),
];
const result = spawnSync(process.execPath, args, { stdio: "inherit" });
process.exit(result.status ?? 1);