Go to file
Robert Long 942630c2fc
Merge pull request #207 from vector-im/revert-206-michaelk/rename_groupcall.txt
Revert "Rename groupcall.txt -> groupcall.json."
2022-02-07 15:23:14 -08:00
.github/workflows Add CI 2021-12-20 16:59:39 +00:00
.storybook Merge branch 'main' into robertlong/spotlight-layout 2022-02-02 15:15:39 -08:00
.vscode Add insertSpaces and tabSize rules 2021-07-25 20:53:02 +02:00
public Fix page titles 2022-02-02 21:48:44 -08:00
scripts export variables 2021-12-20 21:00:06 +00:00
src Revert "Rename groupcall.txt -> groupcall.json." 2022-02-07 15:23:00 -08:00
.dockerignore Add CI 2021-12-20 16:59:39 +00:00
.env Add debug log inspector / rageshake 2022-02-01 15:11:06 -08:00
.gitignore Initial commit 2021-07-16 14:22:03 -07:00
.postcssrc.json Add automatic css prefixing 2021-10-14 17:41:59 -07:00
CONTRIBUTING.md CONTRIBUTING.md 2022-01-26 17:55:52 +00:00
Dockerfile Fix docker build 2021-12-20 20:05:05 +00:00
LICENSE Add LICENSE 2021-07-16 14:31:42 -07:00
package.json Fix page titles 2022-02-02 21:48:44 -08:00
README.md List group rooms and public group rooms properly 2021-10-01 16:17:47 -07:00
vite.config.js Fix page titles 2022-02-02 21:48:44 -08:00
yarn.lock Fix page titles 2022-02-02 21:48:44 -08:00

Matrix Video Chat

Testbed for full mesh video chat.

Getting Started

matrix-video-chat is built against the robertlong/group-call branch of both matrix-js-sdk and matrix-react-sdk. 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 installed locally and running on port 8008.

Finally we can set up this project.

git clone https://github.com/vector-im/matrix-video-chat.git
cd matrix-video-chat
yarn
yarn link matrix-js-sdk
yarn link matrix-react-sdk
yarn dev

Config

Configuration options are documented in the .env file.