An API you can curl, or open in a browser, to receive Bluesky data as markdown!
11
fork

Configure Feed

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

Fix Docker Hub auth: use base64-encoded auth field

Docker config expects {"auth": base64(user:token)}, not separate
username/password fields.

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

jack ea184726 1b3ea46e

+2 -2
+2 -2
.tangled/workflows/docker.yml
··· 12 12 - name: Build and push to Docker Hub 13 13 command: | 14 14 mkdir -p /root/.docker 15 - printf '{"auths":{"https://index.docker.io/v1/":{"username":"%s","password":"%s"}}}' \ 16 - "$DOCKER_USERNAME" "$DOCKER_TOKEN" > /root/.docker/config.json 15 + AUTH=$(printf '%s:%s' "$DOCKER_USERNAME" "$DOCKER_TOKEN" | base64 -w0) 16 + printf '{"auths":{"https://index.docker.io/v1/":{"auth":"%s"}}}' "$AUTH" > /root/.docker/config.json 17 17 18 18 executor \ 19 19 --dockerfile=/tangled/workspace/Dockerfile \