mirror of
https://github.com/YunoHost-Apps/conduit_ynh.git
synced 2024-09-03 18:16:30 +02:00
commit
6e4213be88
7 changed files with 10 additions and 10 deletions
|
@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
|||
Conduit is a lightweight open-source server implementation of the Matrix Specification with a focus on easy setup and low system requirements. That means you can make your own Conduit setup in just a few minutes.
|
||||
Conduit keeps things simple, it's a single binary with an embedded database and can be much faster than other server implementations in some cases.
|
||||
|
||||
**Shipped version:** 0.6.0~ynh2
|
||||
**Shipped version:** 0.6.0~ynh3
|
||||
## Documentation and resources
|
||||
|
||||
* Official app website: <https://conduit.rs/>
|
||||
|
|
|
@ -19,7 +19,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
|
|||
Conduit est une implémentation de serveur open source légère de la spécification Matrix avec un accent sur une configuration facile et des exigences système faibles. Cela signifie que vous pouvez créer votre propre configuration Conduit en quelques minutes seulement.
|
||||
Conduit garde les choses simples, c'est un binaire unique avec une base de données intégrée et peut être beaucoup plus rapide que d'autres implémentations de serveur dans certains cas.
|
||||
|
||||
**Version incluse :** 0.6.0~ynh2
|
||||
**Version incluse :** 0.6.0~ynh3
|
||||
## Documentations et ressources
|
||||
|
||||
* Site officiel de l’app : <https://conduit.rs/>
|
||||
|
|
|
@ -31,7 +31,7 @@ max_request_size = 20_000_000 # in bytes
|
|||
# Enables registration. If set to false, no users can register on this server.
|
||||
allow_registration = __REGISTRATION__
|
||||
|
||||
allow_federation = __DISABLE_FEDERATION__
|
||||
allow_federation = __FEDERATION__
|
||||
allow_check_for_updates = true
|
||||
|
||||
# Server to get public keys from. You probably shouldn't change this
|
||||
|
|
|
@ -13,10 +13,10 @@ name = "Conduit configuration"
|
|||
no = "false"
|
||||
bind = "allow_registration:/var/www/__APP__/conduit.toml"
|
||||
|
||||
[main.registration.disable_federation]
|
||||
ask = "Disable Federation"
|
||||
[main.registration.federation]
|
||||
ask = "Allow Federation"
|
||||
type = "boolean"
|
||||
yes = "true"
|
||||
no = "false"
|
||||
help = "Do not communicate with other homeservers of the Matrix Federation."
|
||||
help = "Communicate with other homeservers of the Matrix Federation."
|
||||
bind = "allow_federation:/var/www/__APP__/conduit.toml"
|
||||
|
|
|
@ -5,9 +5,9 @@ name = "Conduit"
|
|||
description.en = "Simple, fast and reliable chat server powered by Matrix"
|
||||
description.fr = "Serveur de chat simple, rapide et fiable alimenté par Matrix"
|
||||
|
||||
version = "0.6.0~ynh2"
|
||||
version = "0.6.0~ynh3"
|
||||
|
||||
maintainers = [""]
|
||||
maintainers = ["eric_G"]
|
||||
|
||||
[upstream]
|
||||
license = "Apache-2.0"
|
||||
|
|
|
@ -15,7 +15,7 @@ source /usr/share/yunohost/helpers
|
|||
|
||||
#server_name=$YNH_APP_ARG_SERVER_NAME
|
||||
registration=$YNH_APP_ARG_REGISTRATION
|
||||
disable_federation="true"
|
||||
federation="true"
|
||||
|
||||
#=================================================
|
||||
# STORE SETTINGS FROM MANIFEST
|
||||
|
@ -23,7 +23,7 @@ disable_federation="true"
|
|||
|
||||
#ynh_app_setting_set --app=$app --key=server_name --value=$server_name
|
||||
ynh_app_setting_set --app=$app --key=registration --value=$registration
|
||||
ynh_app_setting_set --app=$app --key=disable_federation --value=$disable_federation
|
||||
ynh_app_setting_set --app=$app --key=federation --value=$federation
|
||||
|
||||
#=================================================
|
||||
# APP "BUILD" (DEPLOYING SOURCES, VENV, COMPILING ETC)
|
||||
|
|
Loading…
Add table
Reference in a new issue