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.
 
 
 
 
 

16 lines
286 B

#!/bin/sh
set -ex
if [ "$ENABLE_DATABASE_MIGRATIONS" = "false" ]; then
echo "Skipping database migrations and seeding"
else
echo "Running database migrations"
npx prisma migrate deploy
echo "Seeding the database"
npx prisma db seed
fi
echo "Starting the server"
node main