A decentralized music tracking and discovery platform built on AT Protocol 馃幍 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
97
fork

Configure Feed

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

at main 25 lines 651 B view raw
1services: 2 tap: 3 image: ghcr.io/bluesky-social/indigo/tap:latest 4 depends_on: 5 - webhook 6 restart: always 7 ports: 8 - "2480:2480" 9 volumes: 10 - ./data:/data 11 environment: 12 TAP_DATABASE_URL: sqlite:///data/tap.db 13 TAP_RELAY_URL: https://relay1.us-east.bsky.network 14 TAP_WEBHOOK_URL: http://webhook:2481 15 TAP_SIGNAL_COLLECTION: app.rocksky.scrobble 16 TAP_COLLECTION_FILTERS: app.rocksky.graph.follow,app.rocksky.* 17 webhook: 18 build: . 19 restart: always 20 environment: 21 TAP_CACHE_DATABASE_URL: file:///data/tap-cache.db 22 volumes: 23 - ./cache:/data 24 ports: 25 - "2481:2481"