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

60 lines
1.6 KiB
JSON
Raw Normal View History

2021-04-01 12:47:58 +02:00
{
2021-04-01 12:57:03 +02:00
"name": "ChuWiki",
"id": "chuwiki",
2021-04-01 12:47:58 +02:00
"packaging_format": 1,
"description": {
2021-04-01 12:57:03 +02:00
"en": "A simple, fast and flexible wiki.",
"fr": "Un wiki simple, rapide et flexible."
2021-04-01 12:47:58 +02:00
},
"version": "1.0~ynh1",
2021-04-01 12:57:03 +02:00
"url": "http://chuwiki.genezys.net/",
"license": "AGPL-3.0-only",
2021-04-01 12:47:58 +02:00
"maintainer": {
2021-04-01 12:57:03 +02:00
"name": "Stylix58",
"email": "lateman-jpeg@outlook.fr",
"url": "https://stylix58.netlify.app/"
2021-04-01 12:47:58 +02:00
},
"requirements": {
"yunohost": ">= 4.1.3"
},
"multi_instance": true,
"services": [
"nginx",
2021-04-01 13:30:01 +02:00
"php7.3-fpm"
2021-04-01 12:47:58 +02:00
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"example": "example.com"
},
{
"name": "path",
"type": "path",
2021-04-01 12:57:03 +02:00
"example": "/wiki",
"default": "/wiki"
2021-04-01 12:47:58 +02:00
},
{
"name": "is_public",
"type": "boolean",
2021-04-01 13:34:45 +02:00
"help": {
"en": "If yes, this app will can be accessible by everyone.",
"fr": "Si oui, cette app pourra être accessible par tout le monde."
}
2021-04-01 12:47:58 +02:00
"default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["fr", "en"],
"default": "fr"
}
]
}
}