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

105 lines
3.4 KiB
JSON
Raw Normal View History

2015-10-21 13:03:49 +02:00
{
2017-01-07 17:10:47 +01:00
"packaging_format": 1,
2015-10-21 13:03:49 +02:00
"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"
2015-10-21 13:03:49 +02:00
},
2016-04-17 19:03:14 +02:00
"url": "http://www.mattermost.org/",
"license": "GPL-3.0-only",
2020-12-04 14:57:58 +01:00
"version": "5.29.1~ynh1",
2016-04-17 19:03:14 +02:00
"maintainer": {
2015-10-21 13:03:49 +02:00
"name": "pmorinerie",
"email": "kemenaran@gmail.com"
},
"multi_instance": true,
2016-04-17 19:03:14 +02:00
"services": [
2017-01-03 16:17:34 +01:00
"nginx"
2016-04-17 19:03:14 +02:00
],
2017-01-07 17:10:47 +01:00
"requirements": {
"yunohost": ">= 3.0.0"
2017-01-07 17:10:47 +01:00
},
2015-10-21 13:03:49 +02:00
"arguments": {
"install" : [
{
"name": "domain",
2016-04-17 19:03:14 +02:00
"type": "domain",
2015-10-21 13:03:49 +02:00
"ask": {
"en": "Choose a domain for Mattermost",
"fr": "Choisissez un domaine pour Mattermost"
},
"example": "domain.org"
},
2020-02-08 23:33:19 +01:00
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for Mattermost",
"fr": "Choisissez un chemin pour Mattermost"
},
"example": "/chat",
"default": "/chat"
},
2015-10-21 13:03:49 +02:00
{
"name": "is_public",
"type": "boolean",
2020-02-21 11:38:29 +01:00
"ask": {
2020-02-08 23:33:30 +01:00
"en": "Can users non registered on Yunohost access this chat?",
"fr": "Les invités non-enregistrés sur Yunohost peuvent-ils accéder à ce chat ?"
2015-10-21 13:03:49 +02:00
},
"default": true
},
{
"name": "admin_email",
2020-02-08 23:33:30 +01:00
"type": "string",
"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. At least 8 characters.",
"fr": "Mot de passe pour ladministrateur du chat. Minimum 8 caractères."
},
"optional": false
},
{
"name": "admin_locale",
2020-02-08 23:33:30 +01:00
"type": "string",
"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",
2020-02-08 23:33:30 +01:00
"type": "string",
"ask": {
"en": "Choose a Team name",
"fr": "Choisissez le nom de léquipe"
},
2020-02-08 23:33:30 +01:00
"example": "Team",
"default": "Team",
"optional": false
},
{
"name": "analytics",
"type": "boolean",
"ask": {
2018-01-29 06:35:11 +01:00
"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
2015-10-21 13:03:49 +02:00
}
]
}
}