1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/bookstack_ynh.git synced 2024-09-03 18:16:02 +02:00
bookstack_ynh/manifest.json

71 lines
2.3 KiB
JSON
Raw Normal View History

2019-07-29 19:50:23 +02:00
{
"name": "BookStack",
"id": "bookstack",
"packaging_format": 1,
"description": {
2021-01-28 23:54:40 +01:00
"en": "Platform to create documentation/wiki content",
"fr": "Plateforme pour créer du contenu de documentation/wiki "
2019-07-29 19:50:23 +02:00
},
2021-01-28 23:21:19 +01:00
"version": "0.31.4~ynh1",
2019-07-29 19:50:23 +02:00
"url": "https://github.com/BookStackApp/BookStack",
2021-01-28 23:21:19 +01:00
"license": "MIT",
2019-07-29 19:50:23 +02:00
"maintainer": {
"name": "liberodark",
"email": "liberodark@gmail.com"
},
"requirements": {
2021-01-28 23:21:19 +01:00
"yunohost": ">= 4.0.0"
2019-07-29 19:50:23 +02:00
},
"multi_instance": true,
"services": [
"nginx",
2021-01-28 23:21:19 +01:00
"php7.3-fpm",
2019-07-29 19:50:23 +02:00
"mysql"
],
"arguments": {
"install": [{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for BookStack",
"fr": "Choisissez un nom de domaine pour BookStack"
},
"example": "example.com"
},
2021-01-29 10:12:45 +01:00
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for BookStack",
"fr": "Choisissez un chemin pour BookStack"
},
2021-01-29 12:04:15 +01:00
"example": "/bookstack",
"default": "/bookstack"
2021-01-29 10:12:45 +01:00
},
2021-01-29 09:56:40 +01:00
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
2021-01-29 10:12:45 +01:00
"choices": ["de", "en", "es", "fr", "it", "pt"],
"default": "en"
2021-01-29 09:56:40 +01:00
},
2019-07-29 19:50:23 +02:00
{
"name": "is_public",
"type": "boolean",
"ask": {
2021-01-28 23:21:19 +01:00
"en": "Is it a public site?",
2019-07-29 19:50:23 +02:00
"fr": "Est-ce un site public ?"
},
2021-01-29 11:37:01 +01:00
"help": {
"en": "If enabled, BookStack will be accessible by people who do not have an account. This can be changed later via the webadmin.",
"fr": "Si cette case est cochée, BookStack sera accessible aux personnes nayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin."
},
2021-01-28 23:21:19 +01:00
"default": true
2019-07-29 19:50:23 +02:00
}
]
}
}