Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Adjust Prisma Configuration for Development #95

Merged
merged 1 commit into from
Apr 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ pids
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Prisma
prisma/database.*
prisma/.database.*
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"verify": "npm run build && npm run check && npm run test:cov && npm run test:e2e",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:dev": "npm run db:reset && nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
Expand Down
Loading