2021-07-17 05:22:03 +08:00
# Matrix Video Chat
Testbed for full mesh video chat.
## Getting Started
2021-10-02 02:51:44 +08:00
`matrix-video-chat` is built against the `robertlong/group-call` branch of both [matrix-js-sdk ](https://github.com/matrix-org/matrix-js-sdk/pull/1902 ) and [matrix-react-sdk ](https://github.com/matrix-org/matrix-react-sdk/pull/6848 ). Because of how these packages are configured and Vite's requirements, you will need to clone them locally and use `yarn link` to stich things together.
First clone, install, and link `matrix-js-sdk`
```
git clone https://github.com/matrix-org/matrix-js-sdk.git
cd matrix-js-sdk
git checkout robertlong/group-call
yarn
yarn link
```
Then clone, install, link `matrix-js-sdk` into `matrix-react-sdk` , and link `matrix-react-sdk`
```
git clone https://github.com/matrix-org/matrix-react-sdk.git
cd matrix-react-sdk
git checkout robertlong/group-call
yarn
yarn link matrix-js-sdk
yarn link
```
Next you'll also need [Synapse ](https://matrix-org.github.io/synapse/latest/setup/installation.html ) installed locally and running on port 8008.
Finally we can set up this project.
2021-07-17 05:22:03 +08:00
```
2021-10-02 02:51:44 +08:00
git clone https://github.com/vector-im/matrix-video-chat.git
2021-07-17 05:22:03 +08:00
cd matrix-video-chat
2021-07-27 02:50:32 +08:00
yarn
2021-10-02 02:51:44 +08:00
yarn link matrix-js-sdk
yarn link matrix-react-sdk
2021-09-30 05:34:29 +08:00
yarn dev
2021-07-27 02:50:32 +08:00
```
2021-10-02 07:17:47 +08:00
## Config
Configuration options are documented in the `.env` file.