From ef71cf16bec64c3c27a9d81121e6b8b8886d0b1d Mon Sep 17 00:00:00 2001 From: Brad Groux <3053586+BradGroux@users.noreply.github.com> Date: Fri, 7 Aug 2026 16:12:28 -0500 Subject: [PATCH] docs(readme): fix contradictory just dev command description The Common dev commands section described just dev as running only the desktop app, but it actually starts both the relay and the desktop app together. Corrected the description to match the Quick start section and the justfile recipe. Also added just desktop-dev to the command list, since it is the command that runs only the desktop frontend. Closes #5160 Co-authored-by: Brad Groux Signed-off-by: Brad Groux Signed-off-by: Brad Groux Signed-off-by: Brad Groux <3053586+BradGroux@users.noreply.github.com> --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 56439f00bc1..e962f14b88a 100644 --- a/README.md +++ b/README.md @@ -259,7 +259,8 @@ All defaults work out of the box. Override via `.env`. Full reference in [`.env. ```bash just setup # Docker, migrations, desktop deps just relay # Run the relay -just dev # Run the desktop app +just dev # Run the relay + desktop app together +just desktop-dev # Run the desktop app frontend only (connects to an existing relay) just build # Build the Rust workspace just check # fmt + clippy + desktop check just test-unit # Unit tests (no infra required)