this repo has no description
1
fork

Configure Feed

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

remove knot and piper bc theyre stupid and im starting again lol

-65
-6
.gitmodules
··· 1 - [submodule "knot"] 2 - path = knot 3 - url = https://tangled.org/@tangled.org/knot-docker 4 - [submodule "piper"] 5 - path = piper 6 - url = https://github.com/teal-fm/piper
-22
compose.yml
··· 12 12 target: /pds 13 13 env_file: 14 14 - ./data/pds/pds.env 15 - 16 - knot: 17 - build: ./knot 18 - restart: unless-stopped 19 - ports: 20 - - "5555:5555" 21 - - "2222:22" 22 - volumes: 23 - - ./data/knot/keys:/etc/ssh/keys 24 - - ./data/knot/repositories:/home/git/repositories 25 - - ./data/knot/server:/app 26 - env_file: 27 - - ./data/knot/knot.env 28 - 29 - piper: 30 - build: ./piper 31 - ports: 32 - - "8010:8080" 33 - volumes: 34 - - "./data/piper:/db" 35 - env_file: 36 - - ./data/piper/piper.env
-5
data/knot/knot.env.template
··· 1 - KNOT_SERVER_HOSTNAME= 2 - KNOT_SERVER_OWNER= 3 - KNOT_SERVER_DB_PATH=/app/knotserver.db 4 - KNOT_REPO_SCAN_PATH=/home/git/repositories 5 - KNOT_SERVER_INTERNAL_LISTEN_ADDR=localhost:5444
-32
data/piper/piper.env.template
··· 1 - # Server configuration 2 - SERVER_PORT=8080 3 - SERVER_HOST=0.0.0.0 4 - 5 - SERVER_ROOT_URL=https://piper.vielle.dev/ 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=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} 21 - 22 - # Last.fm 23 - LASTFM_API_KEY= 24 - 25 - # Callback URLs 26 - CALLBACK_SPOTIFY=http://piper.localhost/callback/spotify 27 - 28 - # Tracker settings 29 - TRACKER_INTERVAL=30 30 - 31 - # Database settings 32 - DB_PATH=/db/piper.db