Vow, uncensorable PDS written in Go

chore: remove wrong mentions

+3 -6
+1 -1
.tangled/workflows/ci.yml
··· 17 17 - gcc 18 18 19 19 steps: 20 - - name: "Build servmon" 20 + - name: "Build" 21 21 command: "go build ." 22 22 23 23 - name: "Run tests"
-3
docker-compose.yaml
··· 5 5 build: 6 6 context: . 7 7 dockerfile: Dockerfile 8 - image: ghcr.io/julien/vow:latest 9 8 container_name: vow-init-keys 10 9 volumes: 11 10 - ./keys:/keys ··· 26 25 build: 27 26 context: . 28 27 dockerfile: Dockerfile 29 - image: ghcr.io/julien/vow:latest 30 28 container_name: vow-pds 31 29 depends_on: 32 30 init-keys: ··· 82 80 build: 83 81 context: . 84 82 dockerfile: Dockerfile 85 - image: ghcr.io/julien/vow:latest 86 83 container_name: vow-create-invite 87 84 network_mode: "service:vow" 88 85 volumes:
+2 -2
test.go
··· 10 10 "strings" 11 11 12 12 "github.com/bluesky-social/indigo/api/atproto" 13 + atp "github.com/bluesky-social/indigo/atproto/repo" 13 14 "github.com/bluesky-social/indigo/atproto/syntax" 14 15 "github.com/bluesky-social/indigo/events" 15 16 "github.com/bluesky-social/indigo/events/schedulers/parallel" 16 - atp "github.com/bluesky-social/indigo/atproto/repo" 17 17 lexutil "github.com/bluesky-social/indigo/lex/util" 18 18 "github.com/bluesky-social/indigo/repomgr" 19 19 "github.com/gorilla/websocket" ··· 27 27 28 28 func runFirehoseConsumer(relayHost string) error { 29 29 dialer := websocket.DefaultDialer 30 - u, err := url.Parse("wss://vow.rbrt.fr") 30 + u, err := url.Parse("wss://vowpds.srv.rbrt.fr") 31 31 if err != nil { 32 32 return fmt.Errorf("invalid relayHost: %w", err) 33 33 }