RSS Reader using AT Protocol rssbase.io
feed atom rss reader atproto social
2

Configure Feed

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

fix ci by adding docker?

+11 -2
+8 -2
.tangled/workflows/build.yml
··· 14 14 dependencies: 15 15 - devenv 16 16 17 + virtualisation: 18 + docker: true 19 + 17 20 steps: 18 21 - name: "Initialize devenv" 19 22 command: devenv shell true ··· 38 41 cd application 39 42 export APP_SECRET="${APP_SECRET:-ci-app-secret}" 40 43 export CADDY_MERCURE_JWT_SECRET="${CADDY_MERCURE_JWT_SECRET:-ci-mercure-secret}" 44 + export HTTP_PORT="${HTTP_PORT:-8080}" 45 + export HTTPS_PORT="${HTTPS_PORT:-8443}" 46 + export HTTP3_PORT="${HTTP3_PORT:-8443}" 41 47 trap "docker-compose -f compose.yaml -f compose.prod.yaml down --volumes --remove-orphans" EXIT 42 48 docker-compose -f compose.yaml -f compose.prod.yaml down --volumes --remove-orphans 43 49 docker-compose -f compose.yaml -f compose.prod.yaml up --wait --wait-timeout 120 --no-build -d 44 - curl -v --fail-with-body http://localhost 45 - curl -vI --insecure --fail-with-body "https://localhost/.well-known/mercure?topic=test" 50 + curl -v --fail-with-body "http://localhost:${HTTP_PORT}" 51 + curl -vI --insecure --fail-with-body "https://localhost:${HTTPS_PORT}/.well-known/mercure?topic=test" 46 52 '
+3
.tangled/workflows/check.yml
··· 14 14 dependencies: 15 15 - devenv 16 16 17 + virtualisation: 18 + docker: true 19 + 17 20 steps: 18 21 - name: "Initialize devenv" 19 22 command: devenv shell true