mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
multi_instance value should boolean type in the app's manifest
This commit is contained in:
parent
a6359f8609
commit
95538793e1
4 changed files with 8 additions and 8 deletions
|
@ -18,9 +18,9 @@ The `manifest.json` file defines the app's constants, a bunch of values that Yun
|
||||||
"email": "kload@kload.fr"
|
"email": "kload@kload.fr"
|
||||||
},
|
},
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"yunohost": ">> 2.3.12"
|
"yunohost": ">= 2.4.0"
|
||||||
},
|
},
|
||||||
"multi_instance": "true",
|
"multi_instance": true,
|
||||||
"services": [
|
"services": [
|
||||||
"nginx",
|
"nginx",
|
||||||
"php5-fpm",
|
"php5-fpm",
|
||||||
|
|
|
@ -18,9 +18,9 @@ Le fichier `manifest.json` définit les constantes de l’application, un ensemb
|
||||||
"email": "kload@kload.fr"
|
"email": "kload@kload.fr"
|
||||||
},
|
},
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"yunohost": ">> 2.3.12"
|
"yunohost": ">= 2.4.0"
|
||||||
},
|
},
|
||||||
"multi_instance": "true",
|
"multi_instance": true,
|
||||||
"services": [
|
"services": [
|
||||||
"nginx",
|
"nginx",
|
||||||
"php5-fpm",
|
"php5-fpm",
|
||||||
|
|
|
@ -16,5 +16,5 @@ APP=${!#}
|
||||||
#### Manifest
|
#### Manifest
|
||||||
Set `multi_instance` variable to `true` in the [manifest](packaging_apps_manifest_en):
|
Set `multi_instance` variable to `true` in the [manifest](packaging_apps_manifest_en):
|
||||||
```json
|
```json
|
||||||
"multi_instance": "true",
|
"multi_instance": true,
|
||||||
```
|
```
|
|
@ -17,5 +17,5 @@ APP=${!#}
|
||||||
#### Manifeste
|
#### Manifeste
|
||||||
Passer la variable `multi_instance` à `true` dans le [manifeste](packaging_apps_manifest_fr) :
|
Passer la variable `multi_instance` à `true` dans le [manifeste](packaging_apps_manifest_fr) :
|
||||||
```json
|
```json
|
||||||
"multi_instance": "true",
|
"multi_instance": true,
|
||||||
```
|
```
|
Loading…
Add table
Reference in a new issue