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.

at tap 29 lines 736 B view raw
1services: 2 my-appview: 3 container_name: my-appview 4 image: atcr.io/willdot.net/my-appview:latest 5 ports: 6 - "3333:3000" 7 volumes: 8 - ./data:/data 9 restart: always 10 environment: 11 APPVIEW_DID: ${APPVIEW_DID} 12 APPVIEW_HOSTNAME: ${APPVIEW_HOSTNAME} 13 APPVIEW_HOST: ${APPVIEW_HOST} 14 APPVIEW_PORT: ${APPVIEW_PORT} 15 USERS_DID: ${USERS_DID} 16 TAP_URL: ${TAP_URL} 17 DATABASE_URL: ${DATABASE_URL} 18 depends_on: 19 - tap 20 21 tap: 22 container_name: tap 23 image: ghcr.io/bluesky-social/indigo/tap:latest 24 ports: 25 - "2480:2480" 26 volumes: 27 - ./data:/data 28 environment: 29 TAP_COLLECTION_FILTERS: "app.bsky.feed.post,app.bsky.feed.repost,app.bsky.graph.follow"