garage_ynh/manifest.json

75 lines
2.4 KiB
JSON
Raw Normal View History

2014-10-20 16:55:53 +00:00
{
"name": "Example app",
"id": "example",
2016-04-28 15:53:17 +00:00
"packaging_format": 1,
2014-10-20 16:55:53 +00:00
"description": {
2019-10-17 21:12:15 +00:00
"en": "Explain in *a few (10~15) words* the purpose of the app or what it actually does (it is meant to give a rough idea to users browsing a catalog of 100+ apps)",
"fr": "Expliquez en *quelques* (10~15) mots l'utilité de l'app ou ce qu'elle fait (l'objectif est de donner une idée grossière pour des utilisateurs qui naviguent dans un catalogue de 100+ apps)"
2014-10-20 16:55:53 +00:00
},
2018-06-28 20:05:35 +00:00
"version": "1.0~ynh1",
"url": "https://example.com",
"upstream": {
"license": "free",
"website": "https://example.com",
"demo": "https://demo.example.com",
"admindoc": "https://yunohost.org/packaging_apps",
"userdoc": "https://yunohost.org/apps",
"code": "https://some.forge.com/example/example"
},
2015-12-16 20:02:39 +00:00
"license": "free",
2015-06-22 10:40:00 +00:00
"maintainer": {
2014-10-20 16:55:53 +00:00
"name": "John doe",
"email": "john.doe@example.com"
2014-10-20 16:55:53 +00:00
},
"requirements": {
2021-11-16 21:33:46 +00:00
"yunohost": ">= 4.3.0"
},
"multi_instance": true,
2015-11-22 18:48:18 +00:00
"services": [
"nginx",
2021-02-28 08:44:23 +00:00
"php7.3-fpm",
2015-11-22 18:48:18 +00:00
"mysql"
],
2014-10-20 16:55:53 +00:00
"arguments": {
"install" : [
{
"name": "domain",
2021-09-25 17:07:55 +00:00
"type": "domain"
2014-10-20 16:55:53 +00:00
},
{
"name": "path",
2017-02-03 20:13:25 +00:00
"type": "path",
2014-10-20 17:32:56 +00:00
"example": "/example",
"default": "/example"
2014-10-20 16:55:53 +00:00
},
{
"name": "is_public",
"type": "boolean",
"default": true
2016-02-16 13:05:27 +00:00
},
{
"name": "language",
2019-02-10 14:02:38 +00:00
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
2016-02-16 13:05:27 +00:00
},
"choices": ["fr", "en"],
"default": "fr"
2018-06-28 20:05:35 +00:00
},
2022-03-04 19:53:21 +00:00
{
"name": "admin",
"type": "user"
},
2018-06-28 20:05:35 +00:00
{
"name": "password",
"type": "password",
"help": {
"en": "Use the help field to add an information for the admin about this question.",
"fr": "Utilisez le champ aide pour ajouter une information à l'intention de l'administrateur à propos de cette question."
2021-09-25 17:07:55 +00:00
}
2014-10-20 16:55:53 +00:00
}
]
}
}