tambah akaun dari tiap role

This commit is contained in:
2026-05-17 00:53:43 +07:00
parent c205a89b88
commit a904a27934
7 changed files with 330 additions and 243 deletions
+10
View File
@@ -0,0 +1,10 @@
import { seedLocalUserIfMissing } from "../api/auth";
async function forceSeed() {
console.log("Starting force seed...");
await seedLocalUserIfMissing();
console.log("Force seed completed.");
process.exit(0);
}
forceSeed().catch(console.error);