diff options
| author | Paul Buetow <paul@buetow.org> | 2026-06-15 14:37:31 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-06-15 14:37:31 +0300 |
| commit | 2a894920242ae6f95a36a701962401d44579d2bc (patch) | |
| tree | 2175b2bb14e94efb4d4a60b227e0af2af9187cff | |
| parent | 7b3e3baeb4609f19f655b96f109c7ebcada0b60e (diff) | |
Add top-level Justfile delegating to sub-album Justfiles
| -rw-r--r-- | Justfile | 23 |
1 files changed, 23 insertions, 0 deletions
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 |
