diff options
Diffstat (limited to 'so.war.das/Justfile')
| -rw-r--r-- | so.war.das/Justfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/so.war.das/Justfile b/so.war.das/Justfile new file mode 100644 index 0000000..a8f8d75 --- /dev/null +++ b/so.war.das/Justfile @@ -0,0 +1,17 @@ +# Generate the photo album using shuriken + +# Default recipe: generate the album +generate: + shuriken --generate + +# Dry-run to preview changes without writing +dry-run: + shuriken --dry-run + +# Publish generated dist/ to configured rsync destinations +sync: + shuriken --sync + +# Publish with a dry-run to preview what sync would do +sync-dry-run: + shuriken --sync --dry-run |
