We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38f2804 commit de84c46Copy full SHA for de84c46
2 files changed
.server-changes/prevent-db-seed-script-hang.md
@@ -0,0 +1,6 @@
1
+---
2
+area: webapp
3
+type: chore
4
5
+
6
+Exit db:seed script on success to prevent hanging.
apps/webapp/seed.mts
@@ -168,6 +168,7 @@ seed()
168
})
169
.finally(async () => {
170
await prisma.$disconnect();
171
+ process.exit(0);
172
});
173
174
async function findOrCreateOrganization(
0 commit comments