2.9 KiB
Manifest
The manifest.json
file defines the app's constants, a bunch of values that YunoHost needs to identify the app and install it correctly. It looks like this:
{
"name": "Roundcube",
"id": "roundcube",
"description": {
"en": "Open Source Webmail software",
"fr": "Webmail Open Source"
},
"url": "http://roundcube.net/",
"license": "free",
"maintainer": {
"name": "kload",
"email": "kload@kload.fr"
},
"multi_instance": "true",
"services": [
"nginx",
"php5-fpm",
"mysql"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for Roundcube",
"fr": "Choisissez un domaine pour Roundcube"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for Roundcube",
"fr": "Choisissez un chemin pour Roundcube"
},
"example": "/webmail",
"default": "/webmail"
}
]
}
}
-
name: app name. It does not have to be unique, but it should be, since it is the name shown to all the YunoHost administrators in the app list.
-
id: ID of the app. You have to ensure that this ID is unique before submit an app integration request.
-
description: complete app description. You can make it as detailed as you feel it should be. Only
en
is required right now, but you can translate the description by prepending the locale prefix. -
url: software website.
-
license: application license:
free
ornon-free
. Be careful to not confuse with package license which must be put inLICENSE
file. -
maintainer: informations about the app maintainer for contact.
-
multi_instance: it defines app's ability to be installed multiple times.
-
services: services needed by the application among
nginx
,php5-fpm
,mysql
,uwsgi
,metronome
,postfix
,dovecot
… -
arguments:
- install: argument for the YunoHost's administrator to enter at installation.
- name: argument identification.
- type: (optional) argument type among
domain
,path
,user
,boolean
andpassword
. The field will be hiden in the password case. - optional : (optional) field which indicate if this argument is optional. It can have
true
andfalse
value. - ask: question (at least in
en
) that you can translate. - example: (optional) example value to help administrator to fill the input.
- default: (optional) default value.
- install: argument for the YunoHost's administrator to enter at installation.