Skip to content

Commit

Permalink
add build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
KobeZ123 committed Jul 31, 2024
1 parent a38a7e1 commit 54ec6d3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
"vercel-build": "./vercel.sh",
"build:preview": "prisma generate && echo \"y\" | prisma db push && next build && yarn prisma db seed",
"build:main": "prisma generate & next build",
"startup": "yarn db:start && next dev"
"startup": "yarn db:start && next dev",
"build:development": "NODE_ENV=development prisma generate & next build",
"build:production": "NODE_ENV=production prisma generate & next build"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
Expand Down

0 comments on commit 54ec6d3

Please sign in to comment.