1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mattermost_ynh.git synced 2024-09-03 19:36:29 +02:00
mattermost_ynh/manifest.json
2020-02-09 01:07:59 +01:00

100 lines
3.5 KiB
JSON
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"packaging_format": 1,
"name": "Mattermost",
"id": "mattermost",
"description": {
"en": "An open-source, self-hosted alternative to Slack",
"fr": "Une alternative open-source et auto-hébergée à Slack"
},
"url": "http://www.mattermost.org/",
"license": "GPL-3.0-only",
"version": "4.6.0-1",
"maintainer": {
"name": "pmorinerie",
"email": "kemenaran@gmail.com"
},
"multi_instance": true,
"services": [
"nginx"
],
"requirements": {
"yunohost": ">= 2.7.0"
},
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for Mattermost",
"fr": "Choisissez un domaine pour Mattermost"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for Mattermost",
"fr": "Choisissez un chemin pour Mattermost"
},
"example": "/chat",
"default": "/chat"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Can guest users access this chat?",
"fr": "Les utilisateurs non-enregistrés peuvent-ils accéder à ce chat ?"
},
"default": true
},
{
"name": "admin_email",
"ask": {
"en": "Login email for the chat admin",
"fr": "Adresse email de login pour ladministrateur du chat"
},
"example": "john@gmail.com",
"optional": false
},
{
"name": "admin_password",
"type": "password",
"ask": {
"en": "Password for the chat admin. Must contain at least 10 characters, one lowercase letter, one uppercase letter, one number, and one symbol (e.g. '~!@#$%^&*()').",
"fr": "Mot de passe pour ladministrateur du chat. Doit contenir au moins 10 caractères, une majuscule, une minuscule, un chiffre, et une ponctuation (ex. '~!@#$%^&*()')."
},
"optional": false
},
{
"name": "admin_locale",
"ask": {
"en": "Choose the language of the chat for the admin",
"fr": "Choissisez la langue utilisée pour l'administrateur"
},
"choices": ["en", "fr"],
"default": "en"
},
{
"name": "team_display_name",
"ask": {
"en": "Choose a Team name",
"fr": "Choisissez le nom de léquipe"
},
"example": "Super Groupe",
"optional": false
},
{
"name": "analytics",
"type": "boolean",
"ask": {
"en": "Allow Mattermost to send some telemetrics about your usage of this app?",
"fr": "Autorisez-vous Mattermost à envoyer des informations anonymes sur votre usage de lapplication ?"
},
"default": false
}
]
}
}