fix: remove hardcoded seed password from package.json (use SEED_ADMIN_PASSWORD env var)

This commit is contained in:
2026-06-06 17:22:25 +02:00
parent 192def9008
commit dbb155cb3a
+1 -1
View File
@@ -7,7 +7,7 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:seed": "SEED_ADMIN_PASSWORD=admin123 ts-node --compiler-options '{\"module\":\"CommonJS\"}' prisma/seed.ts"
"db:seed": "ts-node --compiler-options '{\"module\":\"CommonJS\"}' prisma/seed.ts"
},
"prisma": {
"seed": "ts-node --compiler-options '{\"module\":\"CommonJS\"}' prisma/seed.ts"