87 lines
No EOL
2.9 KiB
TOML
87 lines
No EOL
2.9 KiB
TOML
#:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
|
|
|
|
packaging_format = 2
|
|
|
|
id = "vervis"
|
|
name = "Vervis"
|
|
|
|
description.en = "Vervis is a work-in-progress, libre, federated software forge."
|
|
description.fr = "Vervis is a work-in-progress, libre, federated software forge."
|
|
|
|
version = "0.1~ynh1"
|
|
|
|
maintainers = ["Trax"]
|
|
|
|
[upstream]
|
|
license = "AGPL-3.0-or-later"
|
|
website = "https://vervis.peers.community/"
|
|
demo = "https://vervis.peers.community/"
|
|
admindoc = "https://codeberg.org/ForgeFed/Vervis/src/branch/main/INSTALL.md"
|
|
|
|
code = "https://codeberg.org/ForgeFed/Vervis"
|
|
|
|
[integration]
|
|
yunohost = '>= 11.2.30'
|
|
helpers_version = "2.1"
|
|
# List of supported archs using the dpkg --print-architecture nomenclature (amd64/i386/armhf/arm64), for example: ["amd64", "i386']
|
|
architectures = "all"
|
|
multi_instance = true
|
|
ldap = "false"
|
|
sso = "true"
|
|
disk = "50M"
|
|
ram.build = "50M"
|
|
ram.runtime = "50M"
|
|
|
|
[install]
|
|
|
|
[install.domain]
|
|
# this is a generic question - ask strings are automatically handled by YunoHost's core
|
|
type = "domain"
|
|
|
|
[install.init_main_permission]
|
|
# this is a generic question - ask strings are automatically handled by YunoHost's core
|
|
# This won't be saved as setting and will instead be used to initialize the SSOwat permission
|
|
type = "group"
|
|
default = "visitors"
|
|
|
|
[install.language]
|
|
ask.en = "Choose the application language"
|
|
ask.fr = "Choisissez la langue de l'application"
|
|
type = "select"
|
|
choices = en
|
|
|
|
[resources]
|
|
# See the packaging documentation for the full set
|
|
# of explanation regarding the behavior and properties for each of those
|
|
# https://yunohost.org/packaging_apps_resources
|
|
|
|
[resources.sources]
|
|
|
|
[resources.sources.main]
|
|
url = "https://codeberg.org/ForgeFed/Vervis/archive/0.1.tar.gz"
|
|
sha256 = "1f7da160c12e48b9dc0979301399c4c363fe0caddfbd99204ff0c09d4f4ca05b"
|
|
|
|
autoupdate.strategy = "latest_forgejo_tag"
|
|
|
|
[resources.system_user]
|
|
# This will provision/deprovision a unix system user
|
|
|
|
[resources.install_dir]
|
|
# This will create/remove the install dir as /var/www/$app
|
|
# and store the corresponding setting $install_dir
|
|
|
|
[resources.data_dir]
|
|
# This will create/remove the data dir as /home/yunohost.app/$app
|
|
# and store the corresponding setting $data_dir
|
|
|
|
[resources.permissions]
|
|
# This will configure SSOwat permission for $domain/$path/
|
|
# The initial allowed group of user is configured via the init_main_permission question (public=visitors, private=all_users)
|
|
main.url = "/"
|
|
|
|
[resources.ports]
|
|
# This will pick a random port for reverse-proxying and store it as the $port setting
|
|
[resources.apt]
|
|
# This will automatically install/uninstall the following apt packages
|
|
# and implicitly define the $php_version setting as 8.3 (if php8.3-foobar dependencies are listed)
|
|
packages = "libpq-dev zlib1g-dev libssl-dev libpcre3-dev libgmp-dev " |