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

95 lines
2.2 KiB
TOML
Raw Normal View History

2023-06-27 09:46:08 +02:00
packaging_format = 2
id = "etherpad"
name = "Etherpad"
2024-04-11 19:09:40 +02:00
description.en = "Collaborative editing in real-time"
description.fr = "Édition collaborative en temps réel"
2023-06-27 09:46:08 +02:00
version = "2.2.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/"
2024-04-11 19:04:00 +02:00
admindoc = "https://etherpad.org/doc/v2.0.2/"
2023-06-27 09:46:08 +02:00
code = "https://github.com/ether/etherpad-lite"
[integration]
2024-07-06 10:52:31 +02:00
yunohost = ">= 11.2.20"
2023-06-27 09:54:56 +02:00
architectures = "all"
2023-06-27 09:46:08 +02:00
multi_instance = true
2023-12-02 14:57:15 +01:00
2023-06-27 09:54:56 +02:00
ldap = true
2023-12-02 14:57:15 +01:00
2023-06-27 09:54:56 +02:00
sso = true
2023-12-02 14:57:15 +01:00
2024-01-14 20:00:02 +01:00
disk = "200M"
2023-08-27 12:31:48 +02:00
ram.build = "2G"
2023-06-27 09:54:56 +02:00
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]
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) ?"
2023-08-27 12:31:48 +02:00
type = "select"
2023-06-27 09:46:08 +02:00
choices = ["none", "abiword", "libreoffice"]
default = "none"
[install.language]
ask.en = "Choose the application language"
ask.fr = "Choisissez la langue de l'application"
2023-08-27 12:31:48 +02:00
type = "select"
2023-06-27 09:46:08 +02:00
choices = ["ca", "de", "en", "es", "fr", "gl", "hu", "it", "nl", "pt"]
2023-10-28 22:41:50 +02:00
default = "fr"
2023-06-27 09:46:08 +02:00
[install.admin]
type = "user"
[install.password]
type = "password"
[resources]
[resources.sources.main]
url = "https://github.com/ether/etherpad-lite/archive/refs/tags/2.2.1.tar.gz"
sha256 = "5448dd78a605db6c74d37c53dc6c82b9ce3028979e9f070d442809bb1870db08"
2023-08-27 12:33:02 +02:00
autoupdate.strategy = "latest_github_tag"
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
2023-09-27 10:47:22 +02:00
admin.show_tile = false
2023-06-27 09:54:56 +02:00
[resources.apt]
packages = "redis-server"
2024-05-20 20:43:14 +02:00
2023-06-27 09:54:56 +02:00
packages_from_raw_bash = """
if [[ "$export" == "libreoffice" ]]
2024-05-20 20:43:14 +02:00
then
2023-06-27 09:54:56 +02:00
echo "unoconv libreoffice-writer"
elif [[ "$export" == "abiword" ]]
then
echo "abiword"
fi
"""