feat: add pipeline orchestrator skeleton with startup checks, stage runners, shutdown handler, and report generation

This commit is contained in:
lila 2026-05-03 23:01:29 +02:00
parent 080fad1998
commit 87aeb072c5
4 changed files with 584 additions and 9 deletions

View file

@ -33,7 +33,10 @@ async function main(): Promise<void> {
await initDb();
}
main().catch((err) => {
console.error(err);
process.exit(1);
});
// after
if (import.meta.url === `file://${process.argv[1]}`) {
main().catch((err) => {
console.error(err);
process.exit(1);
});
}