You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
443 B

#!/bin/sh
set -e
echo "==> Running database migrations"
npx prisma migrate deploy
echo "==> Ensuring schema is fully synced"
npx prisma db push --skip-generate --accept-data-loss 2>/dev/null || echo " (db push skipped — schema already in sync)"
echo "==> Seeding the database (if applicable)"
npx prisma db seed || echo " (seed skipped or already applied)"
echo "==> Starting the server on port ${PORT:-3333}"
exec node main