Skip to content
Open
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
1 change: 1 addition & 0 deletions CONTENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ maturity = "PICK ONE Stable OR Beta OR Alpha OR Obsolete"
frameworks = ["Name at least one installation technology.", "You may also add more."]
licence = "PICK ONE identifier from https://spdx.org/licenses/"
repository = "https://github.com/example-org/example-repo"
website = "https://mymatrixdistro.dev"
room = "#your-matrix-room:example.com"
support_level = "PICK ONE Community OR Commercial"
matrix_standard = true if it is compatible with Matrix standard apps, false if it only works fully when self-contained
Expand Down
15 changes: 14 additions & 1 deletion content/ecosystem/distributions/distributions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ name = "ESS Community"
description = "Element Server Suite Community Edition allows you to deploy a Matrix stack using the provided Helm charts and a Kubernetes distribution of your choice, even if you don't have Kubernetes knowledge."
vendor = "Element"
maturity = "Stable"
frameworks = ["Kubernetes"]
frameworks = ["Helm","Kubernetes"]
licence = "AGPL-3.0"
repository = "https://github.com/element-hq/ess-helm"
room = "#ess-community:element.io"
support_level = "Community"
matrix_standard = true

Expand All @@ -54,3 +55,15 @@ repository = "https://github.com/spantaleev/matrix-docker-ansible-deploy"
room = "#matrix-docker-ansible-deploy:devture.com"
support_level = "Community"
matrix_standard = true

[[distributions]]
name = "ESS Pro"
description = "Element Server Suite Pro is an enterprise backend for Matrix-based communications."
vendor = "Element"
maturity = "Stable"
frameworks = ["Helm","Kubernetes"]
licence = "Element Commercial License"
website = "https://element.io/server-suite"
support_level = "Commercial"
matrix_standard = true

6 changes: 6 additions & 0 deletions templates/shortcodes/all_distributions.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@ <h3>{{ distribution.name }}</h3>
framework }}{% if not loop.last %} &ndash; {% endif %}{% endfor %}</div>
<span>{{ distribution.description | safe }}</span>
<div class="distribution-links">
{% if distribution.website %}
<a href="{{ distribution.website }}">
{{ load_data(path="/assets/home.svg") | safe }}
Homepage
</a>
{% endif %}
{% if distribution.repository %}
<a href="{{ distribution.repository }}">
{{ load_data(path="/assets/projects/repo.svg") | safe }}
Expand Down