Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions blueprints/tuwunel/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: "3.8"
services:
tuwunel:
image: ghcr.io/matrix-construct/tuwunel:v1.5.0
restart: always
environment:
- TUWUNEL_SERVER_NAME=${TUWUNEL_SERVER_NAME:-matrix.local}
- TUWUNEL_ALLOW_REGISTRATION=${TUWUNEL_ALLOW_REGISTRATION:-false}
- TUWUNEL_REGISTRATION_TOKEN=${TUWUNEL_REGISTRATION_TOKEN}
- TUWUNEL_ADDRESS=${TUWUNEL_ADDRESS:-0.0.0.0}
- TUWUNEL_PORT=${TUWUNEL_PORT:-6167}
volumes:
- tuwunel-data:/var/lib/tuwunel/
expose:
- 6167

volumes:
tuwunel-data:
4 changes: 4 additions & 0 deletions blueprints/tuwunel/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions blueprints/tuwunel/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[variables]
main_domain = "${domain}"
registration_token = "${password:32}"

[config]
env = [
"TUWUNEL_SERVER_NAME=${main_domain}",
"TUWUNEL_REGISTRATION_TOKEN=${registration_token}",
"TUWUNEL_ALLOW_REGISTRATION=true"
]
mounts = []

[[config.domains]]
serviceName = "tuwunel"
port = 6167
host = "${main_domain}"
54 changes: 36 additions & 18 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -5858,6 +5858,24 @@
"open-source"
]
},
{
"id": "strapi",
"name": "Strapi",
"version": "v5.33.0",
"description": "Open-source headless CMS to build powerful APIs with built-in content management.",
"logo": "strapi.svg",
"links": {
"github": "https://github.com/strapi/strapi",
"discord": "https://discord.com/invite/strapi",
"docs": "https://docs.strapi.io",
"website": "https://strapi.io"
},
"tags": [
"headless",
"cms",
"content-management"
]
},
{
"id": "streamflow",
"name": "StreamFlow",
Expand All @@ -5877,24 +5895,6 @@
"media"
]
},
{
"id": "strapi",
"name": "Strapi",
"version": "v5.33.0",
"description": "Open-source headless CMS to build powerful APIs with built-in content management.",
"logo": "strapi.svg",
"links": {
"github": "https://github.com/strapi/strapi",
"discord": "https://discord.com/invite/strapi",
"docs": "https://docs.strapi.io",
"website": "https://strapi.io"
},
"tags": [
"headless",
"cms",
"content-management"
]
},
{
"id": "supabase",
"name": "SupaBase",
Expand Down Expand Up @@ -6152,6 +6152,24 @@
"e-ink"
]
},
{
"id": "tuwunel",
"name": "Tuwunel",
"version": "v1.5.0",
"description": "High performance Matrix homeserver written in Rust. Official successor to conduwuit - a scalable, low-cost, enterprise-ready alternative to Synapse.",
"logo": "logo.svg",
Comment on lines +6155 to +6160
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

meta.json is expected to be sorted alphabetically by id (see dedupe-and-sort-meta.js). In the current ordering, tuwunel appears before twenty, but lexicographically twenty should come first. Please move the tuwunel entry after twenty (or re-run the dedupe/sort script) to keep the file consistently sorted.

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The meta.json is already sorted correctly. Lexicographically, 'tuwunel' (t-u) comes before 'twenty' (t-w), which matches the current order in the file.

"links": {
"github": "https://github.com/matrix-construct/tuwunel",
"website": "https://tuwunel.chat",
"docs": "https://matrix-construct.github.io/tuwunel/"
},
"tags": [
"matrix",
"chat",
"messaging",
"rust"
]
},
{
"id": "twenty",
"name": "Twenty CRM",
Expand Down
Loading