1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/galene_ynh.git synced 2024-09-03 18:36:31 +02:00
galene_ynh/manifest.json

82 lines
2.8 KiB
JSON
Raw Normal View History

2021-01-09 12:29:28 +01:00
{
2021-01-09 21:34:33 +01:00
"name": "Galene",
2021-01-09 12:29:28 +01:00
"id": "galene",
"packaging_format": 1,
"description": {
2021-01-09 21:34:33 +01:00
"en": "Videoconferencing server that is easy to deploy",
"fr": "Serveur de visioconférence facile à déployer"
2021-01-09 12:29:28 +01:00
},
"version": "0.1~ynh1",
"url": "https://galene.org/",
"license": "MIT",
"maintainer": {
2021-01-09 21:34:33 +01:00
"name": "",
"email": ""
2021-01-09 12:29:28 +01:00
},
"requirements": {
2021-01-09 21:34:33 +01:00
"yunohost": ">= 4.0.8"
2021-01-09 12:29:28 +01:00
},
2021-01-09 21:34:33 +01:00
"multi_instance": false,
2021-01-09 12:29:28 +01:00
"services": [
"nginx"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for Galène",
"fr": "Choisissez un nom de domaine pour Galène"
},
"example": "example.com"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose an admin user",
"fr": "Choisissez l'administrateur"
},
"example": "johndoe"
},
{
"name": "password",
"type": "password",
"ask": {
"en": "Set the administrator password",
"fr": "Définissez le mot de passe administrateur"
},
"help": {
"en": "Use the help field to add an information for the admin about this question.",
"fr": "Utilisez le champ aide pour ajouter une information à l'intention de l'administrateur à propos de cette question."
},
"example": "Choose a password"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public application?",
"fr": "Est-ce une application publique ?"
},
"help": {
"en": "If enabled, Galène will be accessible by people who do not have an account. This can be changed later via the webadmin.",
"fr": "Si cette case est cochée, Galène sera accessible aux personnes nayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin."
},
"default": true
},
{
"name": "group_name",
"type": "string",
"ask": {
"en": "Choose a name for the group you want to create",
"fr": "Choisissez un nom pour le groupe que vous voulez créer"
},
"default": "groupname",
"example": "groupname"
2021-01-09 12:29:28 +01:00
}
]
}
}