This commit is contained in:
2025-08-07 19:16:57 -04:00
parent e9b8258fd9
commit a90a914d2f
3 changed files with 12 additions and 11 deletions

View File

@@ -1,8 +1,8 @@
{
"name": "server",
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"dev": "NODE_ENV=development bun run --hot --port 5001 src/index.ts",
"start": "NODE_ENV=production bun run --port 5001 src/index.ts",
"dbstudio": "pnpm dlx prisma studio --browser none",
"dbdeploy": "pnpm dlx prisma migrate deploy",
"dbsync": "concurrently 'pnpm dlx prisma generate' 'pnpm dlx prisma migrate dev'"