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

91 lines
2.9 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "MediaWiki",
"id": "mediawiki",
"packaging_format": 1,
"description": {
"en": "A free and open source software wiki package written in PHP, originally for use on Wikipedia.",
"fr": "Un wiki à base de logiciels libres Open source, développé à lorigine pour Wikipédia."
},
"version": "1.35.2~ynh1",
"url": "https://www.mediawiki.org",
"license": "GPL-2.0-or-later",
"upstream": {
"license": "GPL-2.0-or-later",
"website": "https://www.mediawiki.org",
"demo": "https://www.wikipedia.org/, https://www.mediawiki.org/wiki/Project:Sandbox",
"admindoc": "https://www.mediawiki.org/wiki/Documentation",
"userdoc": "https://www.mediawiki.org/wiki/Project:Help",
"code": "https://github.com/wikimedia/mediawiki",
"version": "1.35.2"
},
"maintainer": {
"name": "Salamandar",
"email": "felix@piedallu.me"
},
"requirements": {
"yunohost": ">= 4.1.0"
},
"multi_instance": true,
"services": [
"nginx",
"php7.3-fpm",
"mysql"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"example": "example.com"
},
{
"name": "path",
"type": "path",
"example": "/wiki",
"default": "/wiki"
},
{
"name": "admin",
"type": "user",
"example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
"help": {
"en": "Visibility of the wiki pages",
"fr": "La visibilité des pages du wiki"
},
"default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["fr", "en"],
"default": "fr"
},
{
"name": "password",
"type": "password",
"help": {
"en": "The password for the wiki administrator. It needs to be solid or the installation process will fail.",
"fr": "Le mot de passe de l'administrateur du wiki. Il doit être solide, sinon l'installation échouera."
},
"example": "Choose a password"
},
{
"name": "wiki_name",
"type": "string",
"ask": {
"en": "Choose the application name",
"fr": "Choisissez le nom de l'application"
},
"default": "YunoWiki"
}
]
}
}