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

78 lines
2.3 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
},
2021-06-07 17:44:58 +02:00
"version": "2.0~ynh1",
2021-04-01 12:57:03 +02:00
"url": "http://chuwiki.genezys.net/",
2021-06-07 17:44:58 +02:00
"upstream": {
"license": "AGPL-3.0-only",
"website": "http://chuwiki.genezys.net/",
2021-06-07 17:51:36 +02:00
"demo": "http://chuwiki.genezys.net/wiki/Bac%20%C3%A0%20sable",
2021-06-07 17:44:58 +02:00
"admindoc": "http://chuwiki.genezys.net/",
2021-06-07 17:51:36 +02:00
"userdoc": "https://yunohost.org/apps",
"code": "https://github.com/genezys/chuwiki"
2021-06-07 17:44:58 +02:00
},
2021-04-01 12:57:03 +02:00
"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": {
2021-06-07 17:51:36 +02:00
"yunohost": ">= 4.2.4"
2021-04-01 12:47:58 +02:00
},
"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-06-07 17:35:22 +02:00
"example": "/chuwiki",
"default": "/chuwiki"
2021-06-08 10:17:44 +02:00
},
{
"name": "titre",
"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": ["fr", "en"],
"default": "fr"
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 13:41:44 +02:00
},
2021-04-01 12:47:58 +02:00
"default": true
}
]
}
}