database seed and coloredConsole

This commit is contained in:
Timur Ercan
2023-01-11 11:44:35 +01:00
parent 5003e32e77
commit c024b03acc
7 changed files with 419 additions and 4203 deletions

View File

@@ -4,10 +4,14 @@
"scripts": {
"dev": "cd apps&&cd web&&next dev",
"build": "cd apps&&cd web&&next build",
"start": "cd apps&&cd web&&next start"
"start": "cd apps&&cd web&&next start",
"db-seed": "prisma db seed"
},
"workspaces": [
"apps/*",
"packages/*"
]
],
"prisma": {
"seed": "ts-node --transpile-only ./packages/prisma/seed.ts"
}
}