78a313c373
* initial * only donwload config once * formatting * update sample config * sentry * refactor load state * fix build yaml * Upper case enums * change how defaults work. review fixes * abstract initialization * copyright * gitignore styleing * refactor initialization * use dafualt as fallback * internalInstance rename * review * remove acidentally added posthog file * DSN rename * update Copyright * remove olm from the initializer Co-authored-by: Timo K <timok@element.io>
21 lines
394 B
Bash
Executable file
21 lines
394 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
export VITE_DEFAULT_HOMESERVER=https://call.ems.host
|
|
export VITE_PRODUCT_NAME="Element Call"
|
|
|
|
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 ../element-call
|
|
|
|
export VITE_APP_VERSION=$(git describe --tags --abbrev=0)
|
|
|
|
yarn link matrix-js-sdk
|
|
yarn install
|
|
yarn run build
|