1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/chuwiki_ynh.git synced 2024-09-03 18:16:18 +02:00
chuwiki_ynh/manifest.json
Éric Gaspar da8b76fb33 Fix path
2023-01-10 11:41:26 +01:00

76 lines
2.3 KiB
JSON

{
"name": "ChuWiki",
"id": "chuwiki",
"packaging_format": 1,
"description": {
"en": "Simple, fast and flexible wiki",
"fr": "Wiki simple, rapide et flexible"
},
"version": "2.0~ynh2",
"url": "http://chuwiki.genezys.net/",
"upstream": {
"license": "AGPL-3.0-only",
"website": "http://chuwiki.genezys.net/",
"demo": "http://chuwiki.genezys.net/wiki/Bac%20%C3%A0%20sable",
"admindoc": "http://chuwiki.genezys.net/",
"userdoc": "https://yunohost.org/apps",
"code": "https://github.com/genezys/chuwiki"
},
"license": "AGPL-3.0-only",
"maintainer": {
"name": "Stylix58",
"email": "lateman-jpeg@outlook.fr",
"url": "https://stylix58.netlify.app/"
},
"requirements": {
"yunohost": ">= 11.0.9"
},
"multi_instance": true,
"services": [
"nginx",
"php7.3-fpm"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain"
},
{
"name": "path",
"type": "path",
"example": "/chuwiki",
"default": "/chuwiki"
},
{
"name": "title",
"type": "string",
"ask": {
"en": "Choose a title for the wiki you want to create",
"fr": "Choisissez un titre pour le wiki que vous souhaitez créer"
},
"example": "ChuWiki",
"default": "ChuWiki"
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["en", "es", "fr", "zh"],
"default": "en"
},
{
"name": "is_public",
"type": "boolean",
"help": {
"en": "If yes, this app will can be accessible by everyone.",
"fr": "Si oui, cette app pourra être accessible par tout le monde."
},
"default": true
}
]
}
}