first commit

This commit is contained in:
2026-06-19 23:55:45 -07:00
commit f2e4730549
297 changed files with 30726 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { execSync } from 'child_process';
export default async function globalSetup() {
try {
// Keep in sync with api/bin/boot-app.sh
execSync(`npm run initializers`, { stdio: 'inherit' });
} catch (error) {
console.error('Failed to run importAndExecuteInitializers:', error);
process.exit(1);
}
}