1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lionwiki-t2t_ynh.git synced 2024-09-03 19:36:27 +02:00
lionwiki-t2t_ynh/manifest.json
2020-04-09 01:16:48 +02:00

113 lines
3.7 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "Lionwiki",
"id": "lionwiki-t2t",
"packaging_format": 1,
"description": {
"en": "A lightweight wiki-style CMS using the txt2tags syntax",
"fr": "Un CMS léger, géré sous forme de wiki utilisant la syntaxe txt2tags"
},
"version": "1.0~ynh1",
"url": "https://lionwiki-t2t.sourceforge.io/",
"license": "free",
"maintainer": {
"name": "Eric Forgeot"
},
"requirements": {
"yunohost": ">= 3.5"
},
"multi_instance": true,
"services": [
"nginx",
"php7.0-fpm"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for lionwiki-t2t",
"fr": "Choisissez un nom de domaine pour lionwiki-t2t"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for lionwiki-t2t",
"fr": "Choisissez un chemin pour lionwiki-t2t"
},
"example": "/lionwiki",
"default": "/lionwiki"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose an admin user",
"fr": "Choisissez ladministrateur"
},
"example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public application?",
"fr": "Est-ce une application publique ?"
},
"default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["fr", "en"],
"default": "en"
},
{
"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"
},
{
"name": "wiki",
"type": "string",
"ask": {
"en": "Set the wiki name",
"fr": "Définissez le titre de votre wiki"
},
"help": {
"en": "This name will be displayed in the header of the wiki.",
"fr": "Ce nom sera affiché dans l'entête de votre wiki."
},
"example": "My Wiki"
},
{
"name": "color",
"type": "string",
"ask": {
"en": "Set color base",
"fr": "Définissez la couleur de base"
},
"help": {
"en": "Use hexadecimal value (6 figures without #)",
"fr": "Utilisez une valeur hexadecimale (6 chiffres sans # devant)"
},
"example": "D17732"
}
]
}
}