From 4cf2a9dd29a0dd718c28a89bd63550058a81f2b9 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Sun, 19 Oct 2025 23:22:31 +0200 Subject: [PATCH] Add basic jusfile --- justfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..0c7dc55 --- /dev/null +++ b/justfile @@ -0,0 +1,19 @@ +set quiet := true + +list: + just --list --unsorted + +fmt: + nix fmt + +[group('zola')] +serve: + zola serve --drafts --open + +[group('zola')] +check: + zola check --drafts + +[group('nix')] +update: + nix flake update --commit-lock-file