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:
parent
4be69a5ff9
commit
d1a4613bc7
1 changed files with 41 additions and 14 deletions
|
@ -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 l’Internet"
|
"fr": "SPIP - Système de publication pour l’Internet"
|
||||||
},
|
},
|
||||||
"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 l’administrateur"
|
||||||
},
|
},
|
||||||
"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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue