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?

+19 -2
+12 -2
.tangled/workflows/build.yml
··· 14 14 dependencies: 15 15 - devenv 16 16 17 + virtualisation: 18 + docker: true 19 + 20 + environment: 21 + DOCKER_BUILDKIT: "1" 22 + COMPOSE_DOCKER_CLI_BUILD: "1" 23 + 17 24 steps: 18 25 - name: "Initialize devenv" 19 26 command: devenv shell true ··· 38 45 cd application 39 46 export APP_SECRET="${APP_SECRET:-ci-app-secret}" 40 47 export CADDY_MERCURE_JWT_SECRET="${CADDY_MERCURE_JWT_SECRET:-ci-mercure-secret}" 48 + export HTTP_PORT="${HTTP_PORT:-8080}" 49 + export HTTPS_PORT="${HTTPS_PORT:-8443}" 50 + export HTTP3_PORT="${HTTP3_PORT:-8443}" 41 51 trap "docker-compose -f compose.yaml -f compose.prod.yaml down --volumes --remove-orphans" EXIT 42 52 docker-compose -f compose.yaml -f compose.prod.yaml down --volumes --remove-orphans 43 53 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" 54 + curl -v --fail-with-body "http://localhost:${HTTP_PORT}" 55 + curl -vI --insecure --fail-with-body "https://localhost:${HTTPS_PORT}/.well-known/mercure?topic=test" 46 56 '
+7
.tangled/workflows/check.yml
··· 14 14 dependencies: 15 15 - devenv 16 16 17 + virtualisation: 18 + docker: true 19 + 20 + environment: 21 + DOCKER_BUILDKIT: "1" 22 + COMPOSE_DOCKER_CLI_BUILD: "1" 23 + 17 24 steps: 18 25 - name: "Initialize devenv" 19 26 command: devenv shell true