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

83 lines
2.5 KiB
JSON
Raw Normal View History

2019-07-29 19:50:23 +02:00
{
"name": "BookStack",
"id": "bookstack",
"packaging_format": 1,
"description": {
2021-02-01 14:42:41 +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
},
2022-03-31 08:24:09 +02:00
"version": "22.03.1~ynh1",
2021-02-01 14:42:41 +01:00
"url": "https://www.bookstackapp.com/",
"upstream": {
"license": "MIT",
"website": "https://www.bookstackapp.com",
"demo": "https://demo.bookstackapp.com",
2022-02-07 19:29:35 +01:00
"admindoc": "https://www.bookstackapp.com/docs/admin/",
"userdoc": "https://www.bookstackapp.com/docs/user/",
"code": "https://github.com/BookStackApp/BookStack"
},
2021-02-01 14:42:41 +01:00
"license": "MIT",
2019-07-29 19:50:23 +02:00
"maintainer": {
"name": "liberodark",
"email": "liberodark@gmail.com"
},
"requirements": {
"yunohost": ">= 4.3.0"
2019-07-29 19:50:23 +02:00
},
2022-03-22 09:35:39 +01:00
"multi_instance": true,
2019-07-29 19:50:23 +02:00
"services": [
"nginx",
"php8.0-fpm",
2019-07-29 19:50:23 +02:00
"mysql"
],
"arguments": {
2022-03-22 09:35:39 +01:00
"install": [
{
2019-07-29 19:50:23 +02:00
"name": "domain",
"type": "domain"
2019-07-29 19:50:23 +02:00
},
{
"name": "path",
"type": "path",
2021-02-01 14:42:41 +01:00
"example": "/bookstack",
"default": "/bookstack"
},
{
"name": "admin",
"type": "user"
},
2021-02-01 14:42:41 +01:00
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
2022-03-22 09:35:39 +01:00
"choices": [
"de",
"en",
"es_ES",
"fa",
"fr",
"it",
"lt",
"nl",
"pl",
"pt_PT",
"uk",
"zh_CN"
],
2021-02-01 14:42:41 +01:00
"default": "en"
2019-07-29 19:50:23 +02:00
},
{
"name": "is_public",
"type": "boolean",
2021-02-01 14:42:41 +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."
},
"default": true
2019-07-29 19:50:23 +02:00
}
]
}
2022-03-22 09:35:39 +01:00
}