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

78 lines
2.1 KiB
JSON
Raw Normal View History

2014-10-20 18:55:53 +02:00
{
"name": "Question2Answer",
"id": "question2answer",
2016-04-28 17:53:17 +02:00
"packaging_format": 1,
2014-10-20 18:55:53 +02:00
"description": {
"en": "Platform for Question&Answer sites.",
"fr": "Plateforme de Question/Réponses."
2014-10-20 18:55:53 +02:00
},
2022-07-29 22:43:23 +02:00
"version": "1.8.6~ynh2",
"url": "https://www.question2answer.org",
"upstream": {
"license": "GPL-2.0-or-later",
"website": "https://www.question2answer.org",
"demo": "http://demo.question2answer.org",
"admindoc": "https://docs.question2answer.org",
"code": "https://github.com/q2a/question2answer"
},
"license": "GPL-2.0-or-later",
2015-06-22 12:40:00 +02:00
"maintainer": {
"name": "Nils Van Zuijlen",
"email": "nils.van-zuijlen@mailo.com"
2014-10-20 18:55:53 +02:00
},
"requirements": {
2022-07-29 22:43:23 +02:00
"yunohost": ">= 4.3.0"
},
"multi_instance": true,
2015-11-22 19:48:18 +01:00
"services": [
"nginx",
2022-07-29 22:43:23 +02:00
"php7.3-fpm",
2015-11-22 19:48:18 +01:00
"mysql"
],
2014-10-20 18:55:53 +02:00
"arguments": {
2022-07-29 22:43:23 +02:00
"install": [
2014-10-20 18:55:53 +02:00
{
"name": "domain",
2022-07-29 22:43:23 +02:00
"type": "domain"
2014-10-20 18:55:53 +02:00
},
{
"name": "path",
2017-02-03 21:13:25 +01:00
"type": "path",
"example": "/question2answer",
"default": "/question2answer"
2014-10-20 18:55:53 +02:00
},
{
"name": "is_public",
"type": "boolean",
"default": true
2016-02-16 14:05:27 +01:00
},
{
"name": "language",
2019-02-10 15:02:38 +01:00
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
2016-02-16 14:05:27 +01:00
},
2022-07-29 22:43:23 +02:00
"choices": [
"fr",
"en"
],
"default": "fr"
2018-06-28 22:05:35 +02:00
},
{
"name": "admin",
2022-07-29 22:43:23 +02:00
"type": "user"
},
{
"name": "q2a_name",
"type": "string",
"ask": {
"en": "Choose the site name",
"fr": "Choisissez le nom de votre Question2Answer"
},
"default": "My Question2Answer forum"
2014-10-20 18:55:53 +02:00
}
]
}
}