From 5e2ec7a60a63104ed168462330c1ea9577c883f7 Mon Sep 17 00:00:00 2001 From: Konstantinos Arvanitakis Date: Wed, 2 Sep 2026 13:23:01 +0300 Subject: [PATCH] Feat: Entrypoint updates --- docker/entrypoint.sh | 6 ++++++ 1 file changed, 6 insertions(+) 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