mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-30 00:50:48 +08:00
34 lines
729 B
Bash
Executable File
34 lines
729 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
export VITE_DEFAULT_HOMESERVER=https://call.ems.host
|
|
export VITE_SENTRY_DSN=https://b1e328d49be3402ba96101338989fb35@sentry.matrix.org/41
|
|
export VITE_RAGESHAKE_SUBMIT_URL=https://element.io/bugreports/submit
|
|
|
|
git clone https://github.com/matrix-org/matrix-js-sdk.git
|
|
cd matrix-js-sdk
|
|
git checkout robertlong/group-call
|
|
yarn install
|
|
yarn run build
|
|
yarn link
|
|
cd ..
|
|
|
|
git clone https://github.com/matrix-org/matrix-react-sdk.git
|
|
cd matrix-react-sdk
|
|
git checkout robertlong/group-call
|
|
yarn link matrix-js-sdk
|
|
yarn install
|
|
yarn run build
|
|
yarn link
|
|
cd ..
|
|
|
|
cd matrix-video-chat
|
|
|
|
export VITE_APP_VERSION=$(git describe --tags --abbrev=0)
|
|
|
|
yarn link matrix-js-sdk
|
|
yarn link matrix-react-sdk
|
|
yarn install
|
|
yarn run build
|