Client side atproto account migrator in your web browser, along with services for backups and adversarial migrations. pdsmoover.com
pds atproto migrations moo cow
at bugfix/DetectNewPds 9 lines 207 B view raw
1FROM rust:1.90.0-bookworm AS builder 2WORKDIR /app 3COPY . /app 4RUN cargo build --bin web --release 5 6FROM rust:1.90.0-bookworm AS web 7COPY --from=builder /app/target/release/web /usr/local/bin/web 8 9CMD ["web"]