Skip to content

Commit

Permalink
Add missing config, fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
octospacc committed Dec 26, 2023
1 parent 76abd8b commit 1bdfd45
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,22 @@ jobs:
sudo apt update
sudo apt install -y nodejs npm
sudo npm install -g yarn
cd matrix-js-sdk
cd ./matrix-js-sdk
yarn link
yarn install
cd ..
cd matrix-react-sdk
cd ./matrix-react-sdk
yarn link
yarn link matrix-js-sdk
yarn install
cd ..
cd element-web
cd ./element-web
yarn link matrix-js-sdk
yarn link matrix-react-sdk
yarn install
yarn build
cd ..
cp ./config.json ./element-web/webapp/
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
Expand Down
49 changes: 49 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"default_server_config": {
"m.homeserver": {
"base_url": "https://matrix-client.matrix.org",
"server_name": "matrix.org"
},
"m.identity_server": {
"base_url": "https://vector.im"
}
},
"disable_custom_urls": false,
"disable_guests": false,
"disable_login_language_selector": false,
"disable_3pid_login": false,
"brand": "Element",
"integrations_ui_url": "https://scalar.vector.im/",
"integrations_rest_url": "https://scalar.vector.im/api",
"integrations_widgets_urls": [
"https://scalar.vector.im/_matrix/integrations/v1",
"https://scalar.vector.im/api",
"https://scalar-staging.vector.im/_matrix/integrations/v1",
"https://scalar-staging.vector.im/api",
"https://scalar-staging.riot.im/scalar/api"
],
"default_country_code": "GB",
"show_labs_settings": false,
"features": {},
"default_federate": true,
"default_theme": "light",
"room_directory": {
"servers": ["matrix.org"]
},
"enable_presence_by_hs_url": {
"https://matrix.org": false,
"https://matrix-client.matrix.org": false
},
"setting_defaults": {
"breadcrumbs": true
},
"jitsi": {
"preferred_domain": "meet.element.io"
},
"element_call": {
"url": "https://call.element.io",
"participant_limit": 8,
"brand": "Element Call"
},
"map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx"
}

0 comments on commit 1bdfd45

Please sign in to comment.