this repo has no description
1
fork

Configure Feed

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

add piper i hope

+41
+9
compose.yml
··· 34 34 - ./data/knot/server:/app 35 35 env_file: 36 36 - ./data/knot.env 37 + 38 + piper: 39 + image: ghcr.io/teal-fm/piper:main 40 + ports: 41 + - 8080:8010 42 + env_file: 43 + - ./data/piper.env 44 + volumes: 45 + - ./data/piper:/db
+32
data/piper.env.template
··· 1 + # Server configuration 2 + SERVER_PORT=8080 3 + SERVER_HOST=localhost 4 + 5 + SERVER_ROOT_URL= 6 + 7 + # Spotify OAuth configuration 8 + SPOTIFY_CLIENT_ID= 9 + SPOTIFY_CLIENT_SECRET= 10 + SPOTIFY_AUTH_URL=https://accounts.spotify.com/authorize 11 + SPOTIFY_TOKEN_URL=https://accounts.spotify.com/api/token 12 + SPOTIFY_SCOPES=user-read-currently-playing user-read-email 13 + 14 + # ATProto OAuth configuration 15 + # link to metadata url 16 + ATPROTO_CLIENT_ID= 17 + ATPROTO_METADATA_URL= 18 + ATPROTO_CALLBACK_URL= 19 + ATPROTO_CLIENT_SECRET_KEY={goat key generate -t P-256} 20 + ATPROTO_CLIENT_SECRET_KEY_ID={can be whatever usually a timestamp} 21 + 22 + # Last.fm 23 + LASTFM_API_KEY= 24 + 25 + # Callback URLs 26 + CALLBACK_SPOTIFY= 27 + 28 + # Tracker settings 29 + TRACKER_INTERVAL=30 30 + 31 + # Database settings 32 + DB_PATH=./piper.db