nordeck / matrix-meetings

A solution to organizing meetings in Matrix chat rooms and video conferences

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NeoDateFix

Build

A solution to organizing meetings in Matrix chat rooms and video conferences. Users can plan meetings, configure options like widgets for meeting rooms, invite participants, perform breakout sessions, and see their calendar. Meeting metadata is stored in Matrix rooms. It also provides an API to create meetings from third party services, like Open-Xchange.

Calendar List Calendar Month Create Meeting Conference

The widgets has multiple parts:

Getting Started

Development on the widget happens at GitHub.

How to Contribute

Please take a look at our Contribution Guidelines.

Check the following section on how to setup a development environment for the widget:

Requirements

You need to install Node.js (>= 20.0.0, prefer using an LTS version) and run yarn to work on this package. The minimal Element version to use this widget is 1.11.29.

Installation

After checkout, run yarn install to download the required dependencies

Warning Do not use npm install when working with this package.

Configuration

Rename the provided .env.local.default to .env.local in the widget or bot folder and fill it with your configuration. For a list of available options, see Configuration.

Running the Widget Locally

Follow the instructions to run the widget locally.

Once running, you can visit the widget URL (http(s)://localhost:3000/) and follow the instructions on how to add it to a room within Element Web.

Available Scripts

In the project directory, you can run:

  • yarn dev: Start the widget for development.
  • yarn start: Start the widget for development with a self-signed HTTPS certificate.
  • yarn build: Run the build step in all projects.
  • yarn test: Watch all files for changes and run tests of the widget.
  • yarn lint: Run eslint in all projects.
  • yarn prettier:write: Run prettier on all files to format them.
  • yarn depcheck: Check for missing or unused dependencies.
  • yarn generate-disclaimer: Generates license disclaimer and include it in the build output.
  • yarn deduplicate: Deduplicate dependencies in the yarn.lock file.
  • yarn changeset: Generate a changeset that provides a description of a change.
  • yarn docker:build: Builds all containers from the output of yarn build and yarn generate-disclaimer.
  • yarn e2e: Runs the end-to-end tests in a single browser. Pass --debug to enable the debug UI. Run yarn docker:build first.

Running the bot locally

Follow the instructions in the README.md file of the matrix-meetings-bot folder.

Versioning

This package uses automated versioning. Each change should be accompanied by a specification of the impact (patch, minor, or major) and a description of the change. Use yarn changeset to generate a new changeset for a pull request. Learn more in the .changeset folder.

Once the change is merged to main, a “Version Packages” pull request will be created. As soon as the project maintainers merged it, the package will be released and the container is published.

Architecture Decision Records

We use Architecture Decision Records (ADR)s to document decisions for our software. You can find them at /docs/adrs.

Deployment

Yon can run the widget using Docker:

docker run --rm -p 8080:8080 ghcr.io/nordeck/matrix-meetings-widget:latest

Yon can run the bot using Docker:

docker run --rm -p 3000:3000 ghcr.io/nordeck/matrix-meetings-bot:latest

We also provide HELM charts.

Verify the Container Images

The container images releases are signed by cosign using identity-based ("keyless") signing and transparency. Execute the following command to verify the signature of a container image:

cosign verify \
--certificate-identity-regexp https://github.com/nordeck/matrix-meetings/.github/workflows/publish-release-bot.yml@refs/tags/@nordeck/matrix-meetings-bot \
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
ghcr.io/nordeck/matrix-meetings-bot:<version> | jq
cosign verify \
--certificate-identity-regexp https://github.com/nordeck/matrix-meetings/.github/workflows/publish-release-widget.yml@refs/tags/@nordeck/matrix-meetings-widget \
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
ghcr.io/nordeck/matrix-meetings-widget:<version> | jq

License

This project is licensed under Apache 2.0 license.

The disclaimer for other OSS components can be accessed via the /NOTICE.txt endpoint. The list of dependencies and their licenses are also available in a machine readable format at /usr/share/nginx/html/licenses.json in the container image.

Sponsors

dPhoenixSuite      Dataport      openDesk      Nordeck

This project is part of the dPhoenixSuite by Dataport and the openDesk Sovereign Workplace by BMI/ZenDiS.

About

A solution to organizing meetings in Matrix chat rooms and video conferences

License:Apache License 2.0


Languages

Language:TypeScript 99.4%Language:JavaScript 0.3%Language:Smarty 0.1%Language:Mustache 0.1%Language:Shell 0.1%Language:HTML 0.0%Language:Dockerfile 0.0%