1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/biboumi_ynh.git synced 2024-09-03 18:15:58 +02:00

[mod] Customized manifest.json.

This commit is contained in:
pitchum 2018-08-29 17:03:52 +02:00
parent b8652b3f3c
commit e51ab11c3e

View file

@ -1,27 +1,24 @@
{ {
"name": "YunoHost example app", "name": "Biboumi XMPP->IRC Gateway",
"id": "ynhexample", "id": "biboumi",
"packaging_format": 1, "packaging_format": 1,
"description": { "description": {
"en": "Example package for YunoHost application.", "en": "XMPP gateway for the IRC network.",
"fr": "Exemple de package dapplication pour YunoHost." "fr": "Passerelle XMPP pour le réseau IRC."
}, },
"version": "1.0~ynh1", "version": "8.0~ynh1",
"url": "https://example.com", "url": "https://biboumi.louiz.org/",
"license": "free", "license": "free",
"maintainer": { "maintainer": {
"name": "John doe", "name": "pitchum",
"email": "john.doe@example.com", "email": "pitchum@yunohost.org"
"url": "http://example.com"
}, },
"requirements": { "requirements": {
"yunohost": ">= 2.7.14" "yunohost": ">= 3.0.0"
}, },
"multi_instance": true, "multi_instance": false,
"services": [ "services": [
"nginx", "metronome"
"php5-fpm",
"mysql"
], ],
"arguments": { "arguments": {
"install" : [ "install" : [
@ -29,21 +26,11 @@
"name": "domain", "name": "domain",
"type": "domain", "type": "domain",
"ask": { "ask": {
"en": "Choose a domain name for ynhexample", "en": "Choose the domain that will host biboumi.",
"fr": "Choisissez un nom de domaine pour ynhexample" "fr": "Choisissez le nom de domaine qui hébergera biboumi."
}, },
"example": "example.com" "example": "example.com"
}, },
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for ynhexample",
"fr": "Choisissez un chemin pour ynhexample"
},
"example": "/example",
"default": "/example"
},
{ {
"name": "admin", "name": "admin",
"type": "user", "type": "user",
@ -52,37 +39,6 @@
"fr": "Choisissez ladministrateur" "fr": "Choisissez ladministrateur"
}, },
"example": "johndoe" "example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public application?",
"fr": "Est-ce une application publique ?"
},
"default": true
},
{
"name": "language",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["fr", "en"],
"default": "fr"
},
{
"name": "password",
"type": "password",
"ask": {
"en": "Set the administrator password",
"fr": "Définissez le mot de passe administrateur"
},
"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"
} }
] ]
} }