tangled
alpha
login
or
join now
moth11.net
/
rvcx
3
fork
atom
backend for xcvr appview
3
fork
atom
overview
issues
4
pulls
pipelines
fix psql script probably and fix the jetstream url
rachel
3 months ago
0e15fa29
32873df1
+2
-2
2 changed files
expand all
collapse all
unified
split
psql
server
cmd
main.go
+1
-1
psql
···
1
1
#!/bin/bash
2
2
source .env
3
3
4
4
-
docker exec -it rvcx_db_1 psql -U $POSTGRES_USER -d $POSTGRES_DB
4
4
+
docker exec -it rvcx-db-1 psql -U $POSTGRES_USER -d $POSTGRES_DB
+1
-1
server/cmd/main.go
···
59
59
}
60
60
61
61
const (
62
62
-
defaultServerAddr = "wss://jetstream.atproto.tools/subscribe"
62
62
+
defaultServerAddr = "wss://jetstream2.us-east.bsky.network/subscribe"
63
63
)
64
64
65
65
func consumeLoop(ctx context.Context, db *db.Store, l *log.Logger, cli *oauth.PasswordClient, rm *recordmanager.RecordManager) {