Files
TaxHacker_s23/docker-entrypoint.sh
2025-03-20 21:14:30 +01:00

15 lines
264 B
Bash

#!/bin/sh
set -e
# Run database migrations
echo "Running database migrations..."
npx prisma migrate deploy
# Initialize database
echo "Checking and seeding database if needed..."
npm run seed
# Start the application
echo "Starting the application..."
exec "$@"