#!/bin/bash

# Start PHP-FPM
php-fpm -D

# Wait for database to be ready
echo "Waiting for database..."
sleep 10

# Run migrations
php bin/console doctrine:migrations:migrate --no-interaction --allow-no-migration

# Clear cache
php bin/console cache:clear --env=prod

# Start Nginx
nginx -g "daemon off;"
