summaryrefslogtreecommitdiff
path: root/Justfile
blob: 9475207cebf96e4a682ca8432053cc43d46480e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Top-level Justfile for irregular.ninja photo sites

# Generate both albums
generate: 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

# Publish both albums to configured rsync destinations
sync: sync-irregular sync-alt

# Publish irregular.ninja
sync-irregular:
	just irregular.ninja/sync

# Publish alt.irregular.ninja
sync-alt:
	just alt.irregular.ninja/sync

# Dry-run publish for both albums
sync-dry-run: sync-dry-run-irregular sync-dry-run-alt

# Dry-run publish irregular.ninja
sync-dry-run-irregular:
	just irregular.ninja/sync-dry-run

# Dry-run publish alt.irregular.ninja
sync-dry-run-alt:
	just alt.irregular.ninja/sync-dry-run

# Dry-run both albums
dry-run: 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