mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-13 23:31:34 +00:00
1002e87b60
* Pinecone demo * Enable multicast, fix HTTP routing * Fix multicast import * Fix build * Update Pinecone demo * Fix the keys * Tweaks * Pinecone room directory support (early) * Fix gobind-pinecone * Add pinecone listener * Fix public key value * Use AuthenticatedConnect for dial * Fix gobind-pinecone * Stop panics * Give fsAPI to keyserver * Pinecone demo fixes * Update gobind build scripts * Account creation * Tweaks * Setup tweaks * API tweaks * API tweaks * API tweaks * Port mutex * Re-enable multicast * Add ReadCopy * Update quic-go, fixes * Shutdowns fixed for iOS * Update build script * Add WebSocket support * Bug fixes * Netconn context * Fix WebSocket connectivity * Fixes to gobind API * Strip frameworks * Configurability updates * Update go.mod * Update go.mod/go.sum * Update go.mod/go.sum * Update go.mod/go.sum * Try to stay connected tto static peer * Update gobind-pinecone * Update go.mod/go.sum * Test uTP+TLS * Use HTTP/2 * Don't use HTTP/2 * Update go.mod/go.sum * Attempt to reconnect to the static peer if it drops * Stay connected to static peers more stickily * Retry room directory lookups if they fail * NewQUIC -> NewSessions * Storage updates * Don't return immediately when there's nothing to sync * Updates * Try to reconnect to static peer more * Update go.mod/go.sum * Require Go 1.14 * Update go.mod/go.sum * Update go.mod/go.sum
22 lines
1018 B
Markdown
22 lines
1018 B
Markdown
# Yggdrasil Demo
|
|
|
|
This is the Dendrite Yggdrasil demo! It's easy to get started - all you need is Go 1.14 or later.
|
|
|
|
To run the homeserver, start at the root of the Dendrite repository and run:
|
|
|
|
```
|
|
go run ./cmd/dendrite-demo-yggdrasil
|
|
```
|
|
|
|
The following command line arguments are accepted:
|
|
|
|
* `-peer tcp://a.b.c.d:e` to specify a static Yggdrasil peer to connect to - you will need to supply this if you do not have another Yggdrasil node on your network
|
|
* `-port 12345` to specify a port to listen on for client connections
|
|
|
|
If you need to find an internet peer, take a look at [this list](https://publicpeers.neilalexander.dev/).
|
|
|
|
Then point your favourite Matrix client to the homeserver URL`http://localhost:8008` (or whichever `-port` you specified), create an account and log in.
|
|
|
|
If your peering connection is operational then you should see a `Connected TCP:` line in the log output. If not then try a different peer.
|
|
|
|
Once logged in, you should be able to open the room directory or join a room by its ID. |