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.

ci: don't try to be smart

Mia 43bb0663 0c4dc291

+2 -1
+2 -1
parakeet-index/Dockerfile
··· 1 1 FROM rust:1.85-slim-bookworm AS builder 2 2 WORKDIR /work 3 3 RUN apt-get update && apt-get install -y --no-install-recommends wget libssl-dev protobuf-compiler pkg-config && rm -rf /var/lib/apt/lists/* 4 - RUN /bin/bash -c 'wget -qO /bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/v0.4.38/grpc_health_probe-linux-$(uname -m)' 4 + RUN wget -qO /bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/v0.4.38/grpc_health_probe-linux-amd64 && \ 5 + chmod +x /bin/grpc_health_probe 5 6 COPY . . 6 7 WORKDIR /work/parakeet-index 7 8 ENV CARGO_HTTP_TIMEOUT=1