From 35a4ca6ea0d9738479de6101e7b502f05f843b7b Mon Sep 17 00:00:00 2001 From: Peter Holloway Date: Thu, 3 Sep 2026 18:36:12 +0100 Subject: [PATCH] fix: reorder just recipes to make default default again The first recipe is the one that is treated as default, the name is not relevant. Renaming 'default' to 'dev-server' better describes what it is doing but as it is intended as the default recipe, it is unlikely that the name will ever be used. --- justfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index 6d1518087..3d28b95d5 100644 --- a/justfile +++ b/justfile @@ -1,6 +1,9 @@ SESSION := "cm12345-1" RUNNER := `command -v docker || command -v podman || true` +[doc('Start the example services via compose and run the blueapi server')] +dev-server: compose serve + _check-runner: #!/usr/bin/env bash if [[ "{{ RUNNER }}" == "" ]]; then @@ -8,9 +11,6 @@ _check-runner: exit 1 fi -[doc('Start the example services via compose and run the blueapi server')] -default: compose serve - [doc('Clone the example-services submodule if needed but leave it alone otherwise')] init-example-services: #!/usr/bin/env bash