this repo has no description
1
fork

Configure Feed

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

setup piper config more i hope

+11 -9
+2 -1
commit.sh
··· 11 11 12 12 # pull latest version 13 13 git pull 14 - git submodule update 14 + git submodule init 15 + git submodule update --recursive --remote 15 16 16 17 # restart/rebuild all containers 17 18 docker compose build --no-cache
-1
compose.yml
··· 11 11 source: ./data/pds 12 12 target: /pds 13 13 env_file: 14 - # - ./pds/data/pds.env 15 14 - ./data/pds/pds.env 16 15 17 16 knot:
+9 -7
data/piper/piper.env.template
··· 1 1 # Server configuration 2 2 SERVER_PORT=8080 3 - SERVER_HOST=localhost 3 + SERVER_HOST=0.0.0.0 4 4 5 - SERVER_ROOT_URL= 5 + SERVER_ROOT_URL=https://piper.vielle.dev/ 6 6 7 7 # Spotify OAuth configuration 8 8 SPOTIFY_CLIENT_ID= ··· 13 13 14 14 # ATProto OAuth configuration 15 15 # link to metadata url 16 - ATPROTO_CLIENT_ID= 17 - ATPROTO_METADATA_URL= 18 - ATPROTO_CALLBACK_URL= 16 + ATPROTO_CLIENT_ID=https://piper.vielle.dev/.well-known/client-metadata.json 17 + ATPROTO_METADATA_URL=https://piper.vielle.dev/.well-known/client-metadata.json 18 + ATPROTO_CALLBACK_URL=https://piper.vielle.dev/callback/atproto 19 + ATPROTO_CLIENT_SECRET_KEY={goat key generate -t P-256} 20 + ATPROTO_CLIENT_SECRET_KEY_ID={can be whatever usually a timestamp} 19 21 20 22 # Last.fm 21 23 LASTFM_API_KEY= 22 24 23 25 # Callback URLs 24 - CALLBACK_SPOTIFY= 26 + CALLBACK_SPOTIFY=http://piper.localhost/callback/spotify 25 27 26 28 # Tracker settings 27 29 TRACKER_INTERVAL=30 28 30 29 31 # Database settings 30 - DB_PATH=./piper.db 32 + DB_PATH=/db/piper.db