1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/moodle_ynh.git synced 2024-09-03 19:46:23 +02:00
moodle_ynh/manifest.json

66 lines
1.8 KiB
JSON
Raw Normal View History

2017-12-14 18:03:01 +01:00
{
"name": "Moodle",
"id": "moodle",
"packaging_format": 1,
"description": {
2020-10-09 14:27:52 +02:00
"en": "Online learning platform",
"fr": "Plateforme d'apprentissage en ligne"
2017-12-14 18:03:01 +01:00
},
"version": "3.10.1~ynh1",
2017-12-14 18:03:01 +01:00
"url": "https://moodle.org/",
2020-03-24 18:05:27 +01:00
"license": "GPL-3.0-or-later",
2017-12-14 18:03:01 +01:00
"maintainer": {
"name": "Anmol Sharma",
"email": "anmol@datamol.org"
},
"requirements": {
2020-11-14 12:23:01 +01:00
"yunohost": ">= 4.0.0"
2017-12-14 18:03:01 +01:00
},
"multi_instance": true,
"services": [
2020-06-13 23:58:57 +02:00
"nginx",
2021-02-14 22:41:22 +01:00
"php7.3-fpm"
2017-12-14 18:03:01 +01:00
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for Moodle",
"fr": "Choisissez un nom de domaine pour Moodle"
},
"example": "example.com"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for Moodle",
"fr": "Choisissez un chemin pour Moodle"
},
2017-12-14 22:39:56 +01:00
"example": "/moodle",
"default": "/moodle"
2017-12-14 18:03:01 +01:00
},
2020-03-24 02:27:41 +01:00
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose the Moodle administrator (must be an existing YunoHost user)",
"fr": "Administrateur du site (doit être un utilisateur YunoHost existant)"
},
"example": "johndoe"
},
2017-12-14 18:03:01 +01:00
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public application?",
"fr": "Est-ce une application publique ?"
},
"default": true
}
]
}
}