flowtodo/docker/entrypoint.sh
Javier Feliz 0ddd325281
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
Initial commit
2025-07-15 18:28:47 -04:00

18 lines
367 B
Bash

#!/bin/sh
set -e
php /app/artisan migrate --force
php /app/artisan storage:link
# Generate only if no key is set in env or config
if [ -z "$APP_KEY" ]; then
echo "Generating APP_KEY..."
php /app/artisan key:generate --force
fi
php /app/artisan config:clear
php /app/artisan config:cache
php /app/artisan view:cache
exec php /app/artisan octane:frankenphp