A script that fixes the metadata from a google photos export and converts it to jpegxl
1
2server:
3 cargo run --bin converter-server
4
5server-release:
6 cargo run --bin converter-server --release
7
8client:
9 cargo run --bin converter-client
10
11client-release:
12 cargo run --bin converter-client
13
14client-windows:
15 nix develop .#windows --command cargo build --bin converter-client --release --target x86_64-pc-windows-gnu