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

67 lines
1.7 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
},
2021-07-30 10:43:25 +02:00
"version": "3.11.2~ynh1",
2017-12-14 18:03:01 +01:00
"url": "https://moodle.org/",
2021-06-17 08:26:55 +02:00
"upstream": {
"license": "GPL-3.0-or-later",
"website": "https://moodle.org/",
"demo": "https://sandbox.moodledemo.net/",
"admindoc": "https://docs.moodle.org/311/en/Main_page",
"code": "https://github.com/moodle/moodle"
},
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": {
2021-06-17 08:26:55 +02:00
"yunohost": ">= 4.2.4"
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",
"example": "example.com"
},
{
"name": "path",
"type": "path",
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",
"example": "johndoe"
2021-08-17 15:46:31 +02:00
},
{
"name": "site_name",
"type": "string",
"ask": {
"en": "Choose a name for the site you want to create",
"fr": "Choisissez un nom pour le site que vous voulez créer"
},
"default": "moodle",
"example": "moodle"
},
2017-12-14 18:03:01 +01:00
{
"name": "is_public",
"type": "boolean",
"default": true
}
]
}
}