Hi, is it good practice to check-in the auto-gener...
# prisma-client
o
Hi, is it good practice to check-in the auto-generated clients generated by
npx prisma generate
to Git, or should I run this command as part of my
prestart
step in
npm
? Context: I am deploying my web app in an air-gapped system and the
npx prisma generate
tried to fetch some files from an online URL and failed miserably. Now I’m debating between: 1. Runing
npx prisma generate
as part of the Docker build - to online fetch the auto-generated files 2. Checking-in the prisma client to Git
✅ 1