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

56 lines
1.4 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",
"php7.3-fpm",
],
"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",
"default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["fr", "en"],
"default": "fr"
}
]
}
}