Keep using Photos.app like you always do. Attic quietly backs up your originals and edits to an S3 bucket you control. One-way, append-only.
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Support LADDER_PATH env var for ladder binary location

+2 -1
+1 -1
README.md
··· 75 75 | `--batch-size N` | Assets per ladder export batch (default: 50) | 76 76 | `--type photo\|video` | Only back up photos or videos | 77 77 | `--bucket NAME` | S3 bucket name (default: `photo-cloud-storage`) | 78 - | `--ladder PATH` | Path to the ladder binary | 78 + | `--ladder PATH` | Path to the ladder binary (or set `LADDER_PATH` env var) | 79 79 | `--db PATH` | Path to Photos.sqlite | 80 80 81 81 ### verify
+1
cli/mod.ts
··· 56 56 ); 57 57 58 58 const ladderPath = flags.ladderPath ?? 59 + Deno.env.get("LADDER_PATH") ?? 59 60 "../ladder/.build/arm64-apple-macosx/release/ladder"; 60 61 const exporter = createLadderExporter(ladderPath); 61 62