tangled
alpha
login
or
join now
julien.rbrt.fr
/
vow
forked from
hailey.at/cocoon
0
fork
atom
Vow, uncensorable PDS written in Go
0
fork
atom
overview
issues
pulls
pipelines
chore: remove wrong mentions
julien.rbrt.fr
2 weeks ago
619a5776
49f2e2fe
1/1
ci.yml
success
1m 9s
+3
-6
3 changed files
expand all
collapse all
unified
split
.tangled
workflows
ci.yml
docker-compose.yaml
test.go
+1
-1
.tangled/workflows/ci.yml
reviewed
···
17
17
- gcc
18
18
19
19
steps:
20
20
-
- name: "Build servmon"
20
20
+
- name: "Build"
21
21
command: "go build ."
22
22
23
23
- name: "Run tests"
-3
docker-compose.yaml
reviewed
···
5
5
build:
6
6
context: .
7
7
dockerfile: Dockerfile
8
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
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
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
reviewed
···
10
10
"strings"
11
11
12
12
"github.com/bluesky-social/indigo/api/atproto"
13
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
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
30
-
u, err := url.Parse("wss://vow.rbrt.fr")
30
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
}