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

70 lines
1.8 KiB
JSON
Raw Normal View History

2017-10-21 01:09:55 +02:00
{
2019-03-08 21:39:44 +01:00
"name": "Fluxbb",
2017-10-21 01:09:55 +02:00
"id": "fluxbb",
"packaging_format": 1,
"description": {
2020-12-08 09:08:58 +01:00
"en": "Fast, light, user-friendly forum software",
"fr": "Forum de discussions rapide et léger."
2017-10-21 01:09:55 +02:00
},
2020-12-08 11:45:58 +01:00
"version": "1.5.11~ynh2",
2019-03-08 21:39:44 +01:00
"url": "https://fluxbb.org/",
"license": "GPL-2.0-only",
2017-10-21 01:09:55 +02:00
"maintainer": {
"name": "Antoine",
2019-03-08 21:39:44 +01:00
"email": "antoine@miaou.org",
"url": "https://miaou.org"
2017-10-21 01:09:55 +02:00
},
"requirements": {
2021-04-28 23:49:17 +02:00
"yunohost": ">= 4.1.7"
2017-10-21 01:09:55 +02:00
},
"multi_instance": true,
"services": [
"nginx",
2021-04-29 07:51:04 +02:00
"php7.3-fpm",
2017-10-21 01:09:55 +02:00
"mysql"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"example": "example.com"
},
{
"name": "path",
"type": "path",
2019-03-08 21:39:44 +01:00
"example": "/forum",
2020-12-08 09:08:58 +01:00
"default": "/fluxbb"
2017-10-21 01:09:55 +02:00
},
{
"name": "admin",
"type": "user",
"example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
2020-11-06 10:32:37 +01:00
"help": {
"en": "Visibility of the forum",
"fr": "La visibilité du forum"
},
2017-10-21 01:09:55 +02:00
"default": true
2019-03-08 21:39:44 +01:00
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["en"],
"default": "en"
},
{
"name": "password",
2021-04-29 07:51:04 +02:00
"type": "password"
2017-10-21 01:09:55 +02:00
}
]
}
2019-03-08 21:39:44 +01:00
}