A personal app view to see Bsky posts of your followers (for when their app view goes down)
17
fork

Configure Feed

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

add tap as part of docker compose

Signed-off-by: Will Andrews <did:plc:dadhhalkfcq3gucaq25hjqon>

+27 -4
+1
.gitignore
··· 1 1 /target 2 2 .env 3 + /data
+22
docker-compose.yaml
··· 1 + services: 2 + my-appview: 3 + container_name: my-appview 4 + image: atcr.io/willdot.net/my-appview:latest 5 + ports: 6 + - "3333:3000" 7 + restart: always 8 + environment: 9 + APPVIEW_DID: ${APPVIEW_DID} 10 + APPVIEW_HOSTNAME: ${APPVIEW_HOSTNAME} 11 + APPVIEW_HOST: ${APPVIEW_HOST} 12 + APPVIEW_PORT: ${APPVIEW_PORT} 13 + 14 + tap: 15 + container_name: tap 16 + image: ghcr.io/bluesky-social/indigo/tap:latest 17 + ports: 18 + - "2480:2480" 19 + volumes: 20 + - ./data:/data 21 + environment: 22 + TAP_COLLECTION_FILTERS: "app.bsky.feed.post,app.bsky.graph.*"
+4 -4
readme.md
··· 14 14 15 15 ### Todo 16 16 17 - - [ ] - Configure Tap 18 - - [ ] Run as part of a docker-compose file 19 - - [ ] Configure to be in `Dynamically Configured` mode 20 - - [ ] Configure the filters to be for `app.bsky.*` (maybe limit this just to be the ones needed) 17 + - [x] - Configure Tap 18 + - [x] Run as part of a docker-compose file 19 + - [x] Configure to be in `Dynamically Configured` mode 20 + - [x] Configure the filters to be for `app.bsky.*` (maybe limit this just to be the ones needed) 21 21 - [ ] - App start up configuration for user 22 22 - [ ] Get users did from config 23 23 - [ ] Fetch and store that users follows