social components inlay.at
atproto components sdui
86
fork

Configure Feed

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

at main 25 lines 534 B view raw
1#!/usr/bin/env bash 2set -e 3 4rm -f tap.db tap.db-shm tap.db-wal 5 6export TAP_COLLECTION_FILTERS="at.inlay.*" 7 8tap run --no-replay & 9TAP_PID=$! 10 11until curl -sf http://localhost:2480/health >/dev/null 2>&1; do 12 sleep 0.1 13done 14 15curl -s -X POST http://localhost:2480/repos/add \ 16 -H 'Content-Type: application/json' \ 17 -d '{"dids":[ 18 "did:plc:fpruhuo22xkm5o7ttr2ktxdo", 19 "did:plc:e4fjueijznwqm2yxvt7q4mba", 20 "did:plc:mdg3w2kpadcyxy33pizokzf3", 21 "did:plc:rm4mmytequowusm6smpw53ez" 22 ]}' 23echo "Repos registered" 24 25wait $TAP_PID