diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index db177d8..e5cb57f 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -47,6 +47,12 @@ if [ "$APP_ENV" != "production" ]; then php artisan vendor:publish --tag=core-assets --force --ansi --quiet php artisan vendor:publish --tag=public --force --ansi --quiet php artisan filament:assets --ansi --quiet + + # No --force: core-views publishes editable Blade templates (order + # notification emails), meant to be hand-customized per app — unlike + # core-assets above, republishing must not silently wipe local edits. + # Only fills in the vendor/core views directory if it doesn't exist yet. + php artisan vendor:publish --tag=core-views --ansi --quiet fi # Everything below is universal, in both dev and production: application STATE