1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/grocy_ynh.git synced 2024-09-03 19:25:54 +02:00
grocy_ynh/manifest.json

70 lines
2.2 KiB
JSON
Raw Normal View History

2020-12-16 19:56:57 +01:00
{
"name": "Grocy",
"id": "grocy",
"packaging_format": 1,
"description": {
2020-12-26 19:51:35 +01:00
"en": "Web-based self-hosted groceries & household management solution for your home",
"fr": "Solution Web auto-hébergée de gestion d'épicerie et de gestion de la maison"
2020-12-16 19:56:57 +01:00
},
2020-12-26 19:51:35 +01:00
"version": "3.0.0~ynh1",
2020-12-16 19:56:57 +01:00
"url": "https://github.com/grocy/grocy",
"license": "MIT",
"maintainer": {
"name": "",
"email": ""
},
"requirements": {
"yunohost": ">= 4.0.0"
},
2020-12-16 22:11:32 +01:00
"multi_instance": true,
2020-12-16 19:56:57 +01:00
"services": [
"nginx",
"php7.0-fpm"
],
"arguments": {
"install": [{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for Grocy",
"fr": "Choisissez un nom de domaine pour Grocy"
},
"example": "example.com"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for Grocy",
"fr": "Choisissez un chemin pour Grocy"
},
2020-12-16 20:01:23 +01:00
"example": "/",
"default": "/"
2020-12-16 19:56:57 +01:00
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
2020-12-26 19:51:35 +01:00
"choices": ["de", "en", "es", "fr", "it", "pt"],
2020-12-16 21:37:39 +01:00
"default": "fr"
2020-12-16 19:56:57 +01:00
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public site?",
"fr": "Est-ce un site public ?"
},
2020-12-26 19:51:35 +01:00
"help": {
"en": "If enabled, Grocy 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, Grocy sera accessible aux personnes nayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin."
},
2020-12-16 19:56:57 +01:00
"default": true
}
]
}
}