From 93cf6f83df855051984f448ffb8576dd737ff163 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 14 Sep 2024 12:22:29 +0100 Subject: [PATCH] chore: add run and run-ui recipes to justfile --- justfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/justfile b/justfile index f1291c3..82a6dc9 100644 --- a/justfile +++ b/justfile @@ -55,3 +55,9 @@ docker-build: docker-build-builder docker-run: docker-build docker run -it -p "7777:8888" -v .:/app/ git.kemitix.net/kemitix/git-next:latest server start --ui + +run *args: + cargo run -- {{ args }} + +run-ui: + just run server start --ui