Files

13 lines
229 B
Bash
Raw Permalink Normal View History

2026-04-20 14:39:29 +05:30
#!/bin/sh
set -e # Exit immediately if a command exits with a non-zero status
echo "Generating Prisma Client..."
npx prisma generate
2026-05-22 14:21:25 +05:30
echo "Running migrate..."
npx prisma migrate deploy
2026-04-20 14:39:29 +05:30
echo "Executing command: $@"
exec "$@"