MatrixGW/README.md

38 lines
1009 B
Markdown
Raw Normal View History

2025-01-15 20:41:42 +01:00
# Matrix Gateway
2025-03-04 19:32:56 +01:00
[![Build Status](https://drone.communiquons.org/api/badges/pierre/MatrixGW/status.svg)](https://drone.communiquons.org/pierre/MatrixGW)
2025-01-15 21:24:08 +01:00
2025-02-27 20:51:06 +01:00
Project that expose a simple API to make use of Matrix API. It acts as a Matrix client (like Element for example)
**Known limitations**:
- Supports only a limited subset of Matrix API
- Does not support E2E encryption
2025-03-04 19:32:56 +01:00
- Does not support spaces
2025-02-27 20:51:06 +01:00
2025-03-04 19:32:56 +01:00
Project written in Rust. Releases are published on Docker Hub.
## Docker image options
```bash
docker run --rm -it docker.io/pierre42100/matrix_gateway --help
```
2025-01-15 21:24:08 +01:00
## Setup dev environment
```
2025-01-17 21:00:44 +01:00
mkdir -p storage/postgres storage/synapse storage/minio
2025-01-15 21:24:08 +01:00
docker compose up
```
URLs:
* Element: http://localhost:8080/
* Synapse: http://localhost:8448/
* OpenID configuration: http://127.0.0.1:9001/dex/.well-known/openid-configuration
2025-01-17 21:00:44 +01:00
* Minio console: http://localhost:9002/
2025-01-15 21:24:08 +01:00
Auto-created Matrix accounts:
* `admin1` : `admin1`
2025-01-17 21:00:44 +01:00
* `user1` : `user1`
2025-03-04 19:32:56 +01:00
Minio administration credentials: `minioadmin` : `minioadmin`