declarative relay deployment on hetzner relay-eval.waow.tech
atproto relay
14
fork

Configure Feed

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

add collectiondir-publish recipe to justfile

builds from indigo source in a temp dir, pushes to atcr.io.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

zzstoatzz a5745312 c25b5854

+14
+14
justfile
··· 198 198 grafana-password: 199 199 @kubectl get secret -n monitoring kube-prometheus-stack-grafana -o jsonpath="{.data.admin-password}" | base64 -d && echo 200 200 201 + # --- images --- 202 + 203 + # build and push collectiondir image from indigo source 204 + collectiondir-publish: 205 + #!/usr/bin/env bash 206 + set -euo pipefail 207 + TMPDIR=$(mktemp -d) 208 + trap "rm -rf $TMPDIR" EXIT 209 + git clone --depth 1 https://github.com/bluesky-social/indigo "$TMPDIR" 210 + docker build --platform linux/amd64 \ 211 + -f "$TMPDIR/cmd/collectiondir/Dockerfile" \ 212 + -t atcr.io/zzstoatzz.io/collectiondir:latest "$TMPDIR" 213 + ATCR_AUTO_AUTH=1 docker push atcr.io/zzstoatzz.io/collectiondir:latest 214 + 201 215 # --- scripts --- 202 216 203 217 # consume the firehose (default: 10s of bsky posts)