From 6a9cd627e2152c0ef9007278a442e20ad98d7198 Mon Sep 17 00:00:00 2001 From: brabli <67018167+brabli@users.noreply.github.com> Date: Thu, 30 Apr 2026 12:23:30 +0100 Subject: [PATCH] Add serve command --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index b200856..79ade0f 100644 --- a/justfile +++ b/justfile @@ -13,3 +13,7 @@ tests: @{{php}} rm -rf var/cache @{{php}} vendor/bin/phpunit +# Run the local Symfony preview app at http://localhost:8000 +serve: + @docker compose run --rm php sh -c "rm -rf dev/var/cache && php -S 0.0.0.0:8000 -t dev/public" +