Update README & sample cfg with livekit config

In line with the livekit updates to GroupCallView etc, modify README.md
and the sample config file to contain a working configuration sample for
LiveKit.
This commit is contained in:
Johannes Meixner 2023-07-08 08:15:05 +02:00
parent df04dc6065
commit b7e0410150
2 changed files with 10 additions and 7 deletions

View file

@ -90,19 +90,19 @@ yarn dev
Add in you `.env` in root dir with: Add in you `.env` in root dir with:
```yaml ```shell
# Develop backend settings: # Develop backend settings:
LIVEKIT_KEY="devkey" LIVEKIT_KEY="devkey"
LIVEKIT_SECRET="secret" LIVEKIT_SECRET="secret"
``` ```
Add SFU parameter in your local config `./public/config.yml`: Add SFU parameter in your local config `./public/config.json`:
```yaml ```json
"livekit": { ,
"server_url": "ws://localhost:7880", "livekit": {
"jwt_service_url": "http:/localhost:8881" "livekit_service_url": "http://localhost:7881"
}, }
``` ```
Run backend components: Run backend components:

View file

@ -5,5 +5,8 @@
"server_name": "call.ems.host" "server_name": "call.ems.host"
} }
}, },
"livekit": {
"livekit_service_url": "http://localhost:7881"
},
"eula": "https://static.element.io/legal/online-EULA.pdf" "eula": "https://static.element.io/legal/online-EULA.pdf"
} }