2021-01-09 12:29:28 +01:00
|
|
|
|
{
|
2021-08-11 18:15:11 +02:00
|
|
|
|
"name": "Galène",
|
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
|
|
|
|
},
|
2021-11-05 19:32:17 +01:00
|
|
|
|
"version": "0.4.1~ynh1",
|
2021-01-09 12:29:28 +01:00
|
|
|
|
"url": "https://galene.org/",
|
2021-05-11 23:40:08 +02:00
|
|
|
|
"upstream": {
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"website": "https://galene.org/",
|
|
|
|
|
"demo": "https://galene.org:8443/",
|
|
|
|
|
"admindoc": "https://galene.org/",
|
2021-09-06 10:34:58 +02:00
|
|
|
|
"userdoc": "https://galene.org/faq.html",
|
2021-05-11 23:40:08 +02:00
|
|
|
|
"code": "https://github.com/jech/galene"
|
|
|
|
|
},
|
2021-01-09 12:29:28 +01:00
|
|
|
|
"license": "MIT",
|
|
|
|
|
"maintainer": {
|
2021-01-10 14:48:30 +01:00
|
|
|
|
"name": "eric_G",
|
2021-01-09 21:34:33 +01:00
|
|
|
|
"email": ""
|
2021-01-09 12:29:28 +01:00
|
|
|
|
},
|
|
|
|
|
"requirements": {
|
2021-11-05 19:32:17 +01:00
|
|
|
|
"yunohost": ">= 4.3.2"
|
2021-01-09 12:29:28 +01:00
|
|
|
|
},
|
2021-06-02 11:42:22 +02:00
|
|
|
|
"multi_instance": false,
|
2021-01-09 12:29:28 +01:00
|
|
|
|
"services": [
|
|
|
|
|
"nginx"
|
|
|
|
|
],
|
|
|
|
|
"arguments": {
|
|
|
|
|
"install" : [
|
|
|
|
|
{
|
|
|
|
|
"name": "domain",
|
2021-09-18 22:39:01 +02:00
|
|
|
|
"type": "domain"
|
2021-01-09 12:29:28 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "admin",
|
2021-09-18 22:39:01 +02:00
|
|
|
|
"type": "user"
|
2021-01-09 12:29:28 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "password",
|
|
|
|
|
"type": "password",
|
|
|
|
|
"help": {
|
2021-01-11 18:43:39 +01:00
|
|
|
|
"en": "Set the administrator password (between 8 and 30 characters)",
|
|
|
|
|
"fr": "Définissez le mot de passe administrateur (entre 8 et 30 caractères)"
|
2021-09-18 22:39:01 +02:00
|
|
|
|
}
|
2021-01-09 23:03:18 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "is_public",
|
|
|
|
|
"type": "boolean",
|
|
|
|
|
"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 n’ayant 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"
|
|
|
|
|
},
|
2021-02-26 16:31:39 +01:00
|
|
|
|
"default": "public",
|
2021-01-15 10:22:53 +01:00
|
|
|
|
"example": "public"
|
2021-03-08 10:50:00 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "group_description",
|
|
|
|
|
"type": "string",
|
2021-05-25 09:14:47 +02:00
|
|
|
|
"optional": true,
|
2021-03-08 10:50:00 +01:00
|
|
|
|
"ask": {
|
|
|
|
|
"en": "Choose a description for the group you want to create",
|
|
|
|
|
"fr": "Décrivez le groupe que vous souhaitez créer"
|
|
|
|
|
},
|
|
|
|
|
"help": {
|
|
|
|
|
"en": "Add a human-readable description of the group; this is displayed on the landing page for public groups.",
|
|
|
|
|
"fr": "Ajoutez une description du groupe; ceci est affiché sur la page de destination des groupes publics."
|
2021-05-10 13:45:55 +02:00
|
|
|
|
}
|
2021-01-09 12:29:28 +01:00
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|