Skip to content

Commit c3597ae

Browse files
authored
Update CONTRIBUTING.md (#983)
Fixes the contributing guidelines that imply that `prisma` CLI is globally installed. Uses `npx prisma` to use the same version of Prisma provided with Epic Stack. Generally, installing node modules globally is a bad idea and should be avoided.
1 parent fb917dc commit c3597ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ cp .env.example .env
5353
npm install
5454
5555
# setup database
56-
prisma migrate reset --force
56+
npx prisma migrate reset --force
5757
5858
# Install playwright browsers
5959
npm run test:e2e:install

0 commit comments

Comments
 (0)