autodeploygit_ynh/manifest.json

71 lines
2.2 KiB
JSON
Raw Normal View History

2014-10-20 19:55:53 +03:00
{
2014-10-20 20:32:56 +03:00
"name": "YunoHost example app",
2014-10-20 19:55:53 +03:00
"id": "ynhexample",
2016-04-28 18:53:17 +03:00
"packaging_format": 1,
2014-10-20 19:55:53 +03:00
"description": {
2019-10-18 00:12:15 +03: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 19:55:53 +03:00
},
2018-06-28 23:05:35 +03:00
"version": "1.0~ynh1",
"url": "https://example.com",
2015-12-16 22:02:39 +02:00
"license": "free",
2015-06-22 13:40:00 +03:00
"maintainer": {
2014-10-20 19:55:53 +03:00
"name": "John doe",
"email": "john.doe@example.com",
"url": "http://example.com"
},
"requirements": {
2021-01-07 12:09:49 +03:00
"yunohost": ">= 4.1.3"
},
"multi_instance": true,
2015-11-22 20:48:18 +02:00
"services": [
"nginx",
2021-02-28 11:44:23 +03:00
"php7.3-fpm",
2015-11-22 20:48:18 +02:00
"mysql"
],
2014-10-20 19:55:53 +03:00
"arguments": {
"install" : [
{
"name": "domain",
2017-02-03 23:13:25 +03:00
"type": "domain",
2014-10-20 19:55:53 +03:00
"example": "example.com"
},
{
"name": "path",
2017-02-03 23:13:25 +03:00
"type": "path",
2014-10-20 20:32:56 +03:00
"example": "/example",
"default": "/example"
2014-10-20 19:55:53 +03:00
},
{
"name": "admin",
2017-02-03 23:13:25 +03:00
"type": "user",
2014-10-20 19:55:53 +03:00
"example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
"default": true
2016-02-16 15:05:27 +02:00
},
{
"name": "language",
2019-02-10 17:02:38 +03:00
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
2016-02-16 15:05:27 +02:00
},
"choices": ["fr", "en"],
"default": "fr"
2018-06-28 23:05:35 +03: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."
},
"example": "Choose a password"
2014-10-20 19:55:53 +03:00
}
]
}
}