doc/packaging_apps_manifest.md

74 lines
3.3 KiB
Markdown
Raw Normal View History

2016-01-26 19:05:35 +01:00
<a class="btn btn-lg btn-default" href="packaging_apps_en">Application packaging</a>
2016-01-26 17:33:06 +01:00
## 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:
```json
{
"name": "Roundcube",
"id": "roundcube",
"description": {
"en": "Open Source Webmail software",
"fr": "Webmail Open Source"
},
2016-01-26 17:46:37 +01:00
"url": "http://roundcube.net/",
2016-01-26 17:49:01 +01:00
"license": "free",
2016-01-26 17:33:06 +01:00
"maintainer": {
"name": "kload",
2016-01-26 17:46:37 +01:00
"email": "kload@kload.fr"
2016-01-26 17:33:06 +01:00
},
"multi_instance": "true",
2016-01-26 17:46:37 +01:00
"services": [
"nginx",
"php5-fpm",
"mysql"
],
2016-01-26 17:33:06 +01:00
"arguments": {
"install" : [
{
"name": "domain",
2016-01-26 17:46:37 +01:00
"type": "domain",
2016-01-26 17:33:06 +01:00
"ask": {
2016-01-26 17:46:37 +01:00
"en": "Choose a domain for Roundcube",
"fr": "Choisissez un domaine pour Roundcube"
2016-01-26 17:33:06 +01:00
},
"example": "domain.org"
},
{
"name": "path",
2016-01-26 17:46:37 +01:00
"type": "path",
2016-01-26 17:33:06 +01:00
"ask": {
2016-01-26 17:46:37 +01:00
"en": "Choose a path for Roundcube",
"fr": "Choisissez un chemin pour Roundcube"
2016-01-26 17:33:06 +01:00
},
"example": "/webmail",
"default": "/webmail"
}
]
}
}
```
2016-01-26 18:36:57 +01:00
* **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.
2016-01-26 17:33:06 +01:00
2016-01-26 18:36:57 +01:00
* **id**: ID of the app. You have to ensure that this ID is unique before submit an app integration request.
2016-01-26 17:33:06 +01:00
2016-01-26 18:36:57 +01:00
* **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.
2016-01-26 17:33:06 +01:00
2016-01-26 17:46:37 +01:00
* **url**: software website.
2016-01-26 18:36:57 +01:00
* **license**: application license: `free` or `non-free`. Be careful to not confuse with package license which must be put in `LICENSE` file.
2016-01-26 17:33:06 +01:00
2016-01-26 18:36:57 +01:00
* **maintainer**: informations about the app maintainer for contact.
2016-01-26 17:33:06 +01:00
* **multi_instance**: this defines your app's ability to be installed multiple times. When YunoHost tries to install a second instance of the app, it will replace the `id` in the scripts by an `id__2`. It means that, if you want to be `multi_instance`, you have to put all the identifiers in the scripts.
2016-01-26 18:36:57 +01:00
<br /><br />**E.g.** in the roundcube script, database is called `roundcube`, the install directory `roundcube` and the Nginx configuration `roundcube`. This way, the second instance of roundcube will not conflict with the first one, and will be installed in the `roundcube__2` database, in the `roundcube__2`directory, and with the `roundcube__2` Nginx configuration.
2016-01-26 17:33:06 +01:00
2016-01-26 17:46:37 +01:00
* **services**: services needed by the application among `nginx`, `php5-fpm`, `mysql`, `uwsgi`, `metronome`
2016-01-26 18:36:57 +01:00
* **arguments**:
* **install**: argument for the YunoHost's administrator to enter at installation.
* **name**: argument identification.
* **type**: (optional) argument type among `domain`, `path` et `password`. The field will be hiden in the password case.
* **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.