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

79 lines
2.3 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
},
"version": "1.8.5~ynh1",
"url": "https://www.question2answer.org/",
"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": {
2021-01-07 10:09:49 +01:00
"yunohost": ">= 4.1.3"
},
"multi_instance": true,
2015-11-22 19:48:18 +01:00
"services": [
"nginx",
2019-01-30 00:32:16 +01:00
"php7.0-fpm",
2015-11-22 19:48:18 +01:00
"mysql"
],
2014-10-20 18:55:53 +02:00
"arguments": {
"install" : [
{
"name": "domain",
2017-02-03 21:13:25 +01:00
"type": "domain",
2014-10-20 18:55:53 +02:00
"example": "example.com"
},
{
"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",
2021-02-25 17:37:19 +01:00
"help": {
"en": "If the application is made private, only the users known to this YunoHost instance will be able to see it.",
"fr": "Si l'application est privée, seuls les utilisateurs de cette instance YunuHost pourront y accéder."
2014-10-20 18:55:53 +02:00
},
"default": true
2016-02-16 14:05:27 +01:00
},
{
"name": "q2a_name",
"type": "string",
"ask": {
"en": "Choose the site name",
"fr": "Choisissez le nom de votre Question2Answer"
},
"default": "My Question2Answer forum"
},
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
},
"choices": ["fr", "en"],
"default": "fr"
2018-06-28 22:05:35 +02:00
},
{
"name": "admin",
"type": "user",
"example": "johndoe"
},
2018-06-28 22:05:35 +02:00
{
"name": "password",
"type": "password",
"example": "Choose a password"
2014-10-20 18:55:53 +02:00
}
]
}
}