From 2a894920242ae6f95a36a701962401d44579d2bc Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 15 Jun 2026 14:37:31 +0300 Subject: Add top-level Justfile delegating to sub-album Justfiles --- Justfile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Justfile diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..ee514b6 --- /dev/null +++ b/Justfile @@ -0,0 +1,23 @@ +# Top-level Justfile for irregular.ninja photo sites + +# Generate both albums +all: generate-irregular generate-alt + +# Generate the irregular.ninja album +generate-irregular: + just irregular.ninja/generate + +# Generate the alt.irregular.ninja album +generate-alt: + just alt.irregular.ninja/generate + +# Dry-run both albums +dry-run-all: dry-run-irregular dry-run-alt + +# Dry-run the irregular.ninja album +dry-run-irregular: + just irregular.ninja/dry-run + +# Dry-run the alt.irregular.ninja album +dry-run-alt: + just alt.irregular.ninja/dry-run -- cgit v1.2.3