♻️ ignore hydrateSaas script and exit(0) on PG migrations

This commit is contained in:
Fred KISSIE
2025-12-02 16:06:10 +01:00
parent 45a82f3ecc
commit 3d400b2321
2 changed files with 3 additions and 1 deletions

3
.gitignore vendored
View File

@@ -49,4 +49,5 @@ postgres/
dynamic/
*.mmdb
scratch/
tsconfig.json
tsconfig.json
hydrateSaas.ts

View File

@@ -11,6 +11,7 @@ const runMigrations = async () => {
migrationsFolder: migrationsFolder
});
console.log("Migrations completed successfully.");
process.exit(0);
} catch (error) {
console.error("Error running migrations:", error);
process.exit(1);