this repo has no description
0
fork

Configure Feed

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

move to cmd

dholms bc52a522 7b289a2e

+6 -3
nexus/crawler.go cmd/nexus/crawler.go
nexus/firehose.go cmd/nexus/firehose.go
nexus/handlers.go cmd/nexus/handlers.go
+6 -3
nexus/main.go cmd/nexus/main.go
··· 11 11 12 12 func main() { 13 13 nexus, err := NewNexus(NexusConfig{ 14 - DBPath: "./nexus.db", 15 - RelayHost: "wss://relay1.us-east.bsky.network", 16 - FullNetworkMode: true, 14 + DBPath: "./nexus.db", 15 + RelayHost: "https://relay1.us-east.bsky.network", 16 + // SignalCollection: "xyz.statusphere.status", 17 + FullNetworkMode: false, 18 + DisableAcks: false, 19 + ResyncParallelism: 5, 17 20 }) 18 21 if err != nil { 19 22 log.Fatal(err)
nexus/models/models.go cmd/nexus/models/models.go
nexus/nexus.go cmd/nexus/nexus.go
nexus/outbox.go cmd/nexus/outbox.go
nexus/processor.go cmd/nexus/processor.go
nexus/resync.go cmd/nexus/resync.go
nexus/types.go cmd/nexus/types.go
nexus/util.go cmd/nexus/util.go