garage_ynh/manifest.json

76 lines
2.1 KiB
JSON
Raw Normal View History

2014-10-20 16:55:53 +00:00
{
2014-10-20 17:32:56 +00:00
"name": "YunoHost example app",
2014-10-20 16:55:53 +00:00
"id": "ynhexample",
2016-04-28 15:53:17 +00:00
"packaging_format": 1,
2014-10-20 16:55:53 +00:00
"description": {
"en": "Example package for YunoHost application.",
"fr": "Exemple de package dapplication pour YunoHost."
2014-10-20 16:55:53 +00:00
},
"url": "https://example.com",
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",
"url": "http://example.com"
},
"requirements": {
2017-06-02 16:54:30 +00:00
"yunohost": ">> 2.5.6"
},
"multi_instance": true,
2015-11-22 18:48:18 +00:00
"services": [
"nginx",
"php5-fpm",
"mysql"
],
2014-10-20 16:55:53 +00:00
"arguments": {
"install" : [
{
"name": "domain",
2017-02-03 20:13:25 +00:00
"type": "domain",
2014-10-20 16:55:53 +00:00
"ask": {
"en": "Choose a domain name for ynhexample",
"fr": "Choisissez un nom de domaine pour ynhexample"
2014-10-20 16:55:53 +00:00
},
"example": "example.com"
},
{
"name": "path",
2017-02-03 20:13:25 +00:00
"type": "path",
2014-10-20 16:55:53 +00:00
"ask": {
"en": "Choose a path for ynhexample",
"fr": "Choisissez un chemin pour ynhexample"
2014-10-20 16:55:53 +00:00
},
2014-10-20 17:32:56 +00:00
"example": "/example",
"default": "/example"
2014-10-20 16:55:53 +00:00
},
{
"name": "admin",
2017-02-03 20:13:25 +00:00
"type": "user",
2014-10-20 16:55:53 +00:00
"ask": {
"en": "Choose an admin user",
"fr": "Choisissez ladministrateur"
2014-10-20 16:55:53 +00:00
},
"example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
2014-10-20 16:55:53 +00:00
"ask": {
"en": "Is it a public application?",
"fr": "Est-ce une application publique ?"
2014-10-20 16:55:53 +00:00
},
"default": true
2016-02-16 13:05:27 +00:00
},
{
"name": "language",
"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"
2014-10-20 16:55:53 +00:00
}
]
}
}