Select the types of activity you want to include in your feed.
1default: 2 @just --list 3 4# ship to fly. run from repo root. 5deploy: 6 cd backend && fly deploy 7 8# check that all zig sources are formatted. exits non-zero on any diff. 9fmt-check: 10 cd backend && zig fmt --check src/ 11 12# apply zig fmt in place. 13fmt: 14 cd backend && zig fmt src/