1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/etherpad_ynh.git synced 2024-09-03 18:36:10 +02:00
etherpad_ynh/manifest.toml

92 lines
2.5 KiB
TOML
Raw Normal View History

2023-06-27 09:46:08 +02:00
packaging_format = 2
id = "etherpad"
name = "Etherpad"
description.en = "Online editor providing collaborative editing in real-time"
description.fr = "Éditeur en ligne fournissant l'édition collaborative en temps réel"
2023-06-27 09:54:56 +02:00
version = "1.9.1~ynh1"
2023-06-27 09:46:08 +02:00
maintainers = ["eric_G"]
[upstream]
license = "Apache-2.0"
website = "https://etherpad.org/"
demo = "https://video.etherpad.com/"
2023-06-27 09:54:56 +02:00
admindoc = "http://etherpad.org/doc/v1.9.1"
2023-06-27 09:46:08 +02:00
code = "https://github.com/ether/etherpad-lite"
[integration]
2023-06-27 09:54:56 +02:00
yunohost = ">= 11.1.21"
architectures = "all"
2023-06-27 09:46:08 +02:00
multi_instance = true
2023-06-27 09:54:56 +02:00
ldap = true
sso = true
disk = "50M"
ram.build = "50M"
ram.runtime = "50M"
2023-06-27 09:46:08 +02:00
[install]
[install.domain]
type = "domain"
[install.path]
type = "path"
default = "/etherpad"
[install.init_main_permission]
help.en = "If enabled, Etherpad will be accessible by people who do not have an account. This can be changed later via the webadmin."
help.fr = "Si cette case est cochée, Etherpad sera accessible aux personnes nayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin."
type = "group"
default = "visitors"
[install.export]
ask.en = "Use AbiWord (~260 Mo) or LibreOffice (~400 Mo) (more stable) to expand export possibilities (PDF, doc)?"
ask.fr = "Utiliser AbiWord (~260 Mo) ou LibreOffice (~400 Mo) (plus stable) pour étendre les possibilités d'export (PDF, doc) ?"
type = "string"
choices = ["none", "abiword", "libreoffice"]
default = "none"
[install.language]
ask.en = "Choose the application language"
ask.fr = "Choisissez la langue de l'application"
type = "string"
choices = ["ca", "de", "en", "es", "fr", "gl", "hu", "it", "nl", "pt"]
default = "en"
[install.admin]
type = "user"
[install.password]
type = "password"
[resources]
[resources.sources.main]
2023-06-27 09:54:56 +02:00
url = "https://github.com/ether/etherpad-lite/archive/1.9.1.tar.gz"
sha256 = "667741235a2bcd8d28a32f5e611b82fb2ea7d11525ff41b8b5478b05a987b047"
2023-06-27 09:46:08 +02:00
2023-06-27 09:54:56 +02:00
[resources.ports]
2023-06-27 09:46:08 +02:00
[resources.system_user]
[resources.install_dir]
[resources.permissions]
main.url = "/"
2023-06-27 09:54:56 +02:00
admin.url = "/admin"
admin.allowed = ["admins"]
admin.auth_header = false
[resources.apt]
packages = "mariadb-server"
packages_from_raw_bash = """
if [[ "$export" == "libreoffice" ]]
then
echo "unoconv libreoffice-writer"
elif [[ "$export" == "abiword" ]]
then
echo "abiword"
fi
"""