element-call/README.md

37 lines
619 B
Markdown
Raw Normal View History

2021-07-16 21:22:03 +00:00
# Matrix Video Chat
Testbed for full mesh video chat.
## Getting Started
2021-07-26 22:11:28 +00:00
You must first run a local Synapse server on port 8008
2021-07-16 21:22:03 +00:00
2021-07-26 18:50:32 +00:00
Then install the dependencies:
2021-07-16 21:22:03 +00:00
```
cd matrix-video-chat
npm install
2021-07-26 18:50:32 +00:00
```
Locally checkout the [robertlong/full-mesh-voip](https://github.com/matrix-org/matrix-js-sdk/tree/robertlong/full-mesh-voip) branch of the matrix-js-sdk.
```
cd matrix-js-sdk
git checkout robertlong/full-mesh-voip
yarn
yarn build
npm link
```
Link the matrix-js-sdk into the matrix-video-chat project:
```
cd matrix-video-chat
npm link matrix-js-sdk
```
Finally run the development server
```
2021-07-16 21:22:03 +00:00
npm run dev
```