1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/spip_ynh.git synced 2024-09-03 20:25:59 +02:00

Update manifest.json

This commit is contained in:
magikcypress 2016-09-20 02:01:59 +02:00
parent 4be69a5ff9
commit d1a4613bc7

View file

@ -1,12 +1,13 @@
{ {
"name": "SPIP", "name": "SPIP for Yunohost",
"packaging_format": 1,
"id": "spip", "id": "spip",
"packaging_format": 1,
"description": { "description": {
"en": "SPIP - publishing system for the Internet", "en": "SPIP - publishing system for the Internet",
"fr": "SPIP - Système de publication pour lInternet" "fr": "SPIP - Système de publication pour lInternet"
}, },
"license": "GPL-3", "url": "http://www.spip.net/",
"license": "free",
"maintainer": { "maintainer": {
"name": "cyp", "name": "cyp",
"email": "cyp@rouquin.me", "email": "cyp@rouquin.me",
@ -15,33 +16,59 @@
"requirements": { "requirements": {
"yunohost": ">> 2.4.0" "yunohost": ">> 2.4.0"
}, },
"url": "http://www.spip.net/", "multi_instance": true,
"multi_instance": "true", "services": [
"nginx",
"php5-fpm",
"mysql"
],
"arguments": { "arguments": {
"install" : [ "install" : [
{ {
"name": "domain", "name": "domain",
"type": "domain",
"ask": { "ask": {
"en": "Choose a domain for SPIP" "en": "Choose a domain name for SPIP",
"fr": "Choisissez un nom de domaine pour SPIP"
}, },
"example": "domain.org" "example": "example.com"
}, },
{ {
"name": "path", "name": "path",
"type": "path",
"ask": { "ask": {
"en": "Choose a path for SPIP" "en": "Choose a path for SPIP",
"fr": "Choisissez un chemin pour SPIP"
}, },
"example": "/spip", "example": "/example",
"default": "/spip" "default": "/example"
}, },
{ {
"name": "admin", "name": "admin",
"type": "user", "type": "user",
"ask": { "ask": {
"en": "Choose the SPIP administrator (must be an existing YunoHost user)", "en": "Choose an admin user",
"fr": "Administrateur du site (doit être un utilisateur YunoHost existant)" "fr": "Choisissez ladministrateur"
}, },
"example": "homer" "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"
} }
] ]
} }