Parakeet is a Rust-based Bluesky AppServer aiming to implement most of the functionality required to support the Bluesky client
appview atproto bluesky rust appserver
66
fork

Configure Feed

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

fix(consumer): following from #2f1e5266, set docker to use SIGINT

Mia 6962a240 c8f5dce2

+2 -1
+2 -1
consumer/Dockerfile
··· 9 9 FROM debian:bookworm-slim 10 10 RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates && rm -rf /var/lib/apt/lists/* 11 11 COPY --from=builder /work/target/release/consumer /usr/local/bin/consumer 12 - CMD ["consumer"] 12 + CMD ["consumer"] 13 + STOPSIGNAL SIGINT