From 0e77d9691ed0ae55182e2b497d5c22a0e341e750 Mon Sep 17 00:00:00 2001 From: bronsen Date: Tue, 9 Dec 2025 21:26:27 +0100 Subject: [PATCH] some more recipes: set up, clean up, ... --- justfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/justfile b/justfile index 566685c..beeebe4 100644 --- a/justfile +++ b/justfile @@ -1,6 +1,9 @@ default: @just --list +setup: + uv sync + # run Textual's console console: uv run textual console @@ -27,3 +30,10 @@ lint-markdown: markdownlint-cli2 . lint: lint-python lint-markdown + +# remove artefacts from dist/ +clean: + rm dist/*.whl dist/*.tar.gz + +# ci: +# woodpecker-cli exec "whatever"