1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/isso_ynh.git synced 2024-09-03 19:35:55 +02:00
isso_ynh/manifest.toml

74 lines
2.6 KiB
TOML
Raw Normal View History

2023-06-10 11:39:13 +02:00
packaging_format = 2
id = "isso"
name = "Isso"
description.en = "Lightweight commenting server"
description.fr = "Système de commentaire léger"
version = "0.13.0~ynh1"
maintainers = ["Navan Chauhan"]
[upstream]
license = "MIT"
website = "https://isso-comments.de"
demo = "https://isso-comments.de"
admindoc = "https://isso-comments.de/docs/reference/server-config/"
userdoc = "https://isso-comments.de/docs/reference/client-config/"
code = "https://github.com/posativ/isso"
cpe = "???" # FIXME: optional but recommended if relevant, this is meant to contain the Common Platform Enumeration, which is sort of a standard id for applications defined by the NIST. In particular, Yunohost may use this is in the future to easily track CVE (=security reports) related to apps. The CPE may be obtained by searching here: https://nvd.nist.gov/products/cpe/search. For example, for Nextcloud, the CPE is 'cpe:2.3:a:nextcloud:nextcloud' (no need to include the version number)
fund = "???" # FIXME: optional but recommended (or remove if irrelevant / not applicable). This is meant to be an URL where people can financially support this app, especially when its development is based on volunteers and/or financed by its community. YunoHost may later advertise it in the webadmin.
[integration]
2023-06-10 11:50:32 +02:00
yunohost = ">= 11.1.20"
architectures = "all"
2023-06-10 11:39:13 +02:00
multi_instance = true
2023-06-10 11:50:32 +02:00
ldap = false
sso = false
disk = "50M"
ram.build = "50M"
ram.runtime = "50M"
2023-06-10 11:39:13 +02:00
[install]
[install.domain]
type = "domain"
full_domain = true
[install.target_domain]
2023-06-10 11:50:32 +02:00
ask.en = "your website or blog (not the location of Isso!). Please do not add a trailing `/` in the target_domain"
ask.fr = "votre site Web ou votre blog (pas l'emplacement d'Isso !). Veuillez ne pas ajouter de `/` à la fin du domaine_cible"
2023-06-10 11:39:13 +02:00
type = "string"
2023-06-10 11:50:32 +02:00
example = "https://someotherwebsite.com"
2023-06-10 11:39:13 +02:00
[install.admin]
help.en = "User who will receive moderation emails"
2023-06-10 11:50:32 +02:00
help.fr = "Utilisateur qui recevra les emails de modération"
2023-06-10 11:39:13 +02:00
type = "user"
[install.password]
2023-06-10 11:50:32 +02:00
help.en = "Password for the admin interface."
help.fr = "Mot de passe pour l'interface d'administration."
2023-06-10 11:39:13 +02:00
type = "password"
[resources]
2023-06-10 11:50:32 +02:00
[resources.ports]
2023-06-10 11:39:13 +02:00
[resources.system_user]
[resources.install_dir]
[resources.data_dir]
[resources.permissions]
main.url = "/"
2023-06-10 11:50:32 +02:00
admin.url = "/admin"
admin.allowed = "admins"
api.url="/api"
api.allowed="visitors"
api.show_tile="false"
api.protected="true"
[resources.apt]
packages = "git curl python3 python3-pip python3-venv libpq-dev libsasl2-dev python3-dev libssl-dev libffi-dev python3-cffi"