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

86 lines
2.4 KiB
JSON
Raw Normal View History

2018-01-24 20:18:53 +01:00
{
2019-03-09 10:14:08 +01:00
"name": "BlogoText",
2018-01-24 20:18:53 +01:00
"id": "blogotext",
"packaging_format": 1,
"description": {
2019-03-09 10:14:08 +01:00
"en": "This is BlogoText, the lightweight Blog-Engine.",
"fr": "Ceci est BlogoText, un moteur de blog léger."
2018-01-24 20:18:53 +01:00
},
2019-03-09 10:14:08 +01:00
"version": "3.7.6",
2018-01-24 20:18:53 +01:00
"url": "https://blogotext.org/",
"license": "MIT",
"maintainer": {
2019-03-09 10:14:08 +01:00
"name": "antoine",
"email": "antoine@miaou.org",
"url": "https://miaou.org"
2018-01-24 20:18:53 +01:00
},
"requirements": {
2019-03-09 10:14:08 +01:00
"yunohost": ">= 3.4"
2018-01-24 20:18:53 +01:00
},
"multi_instance": true,
"services": [
"nginx",
2019-03-09 10:14:08 +01:00
"php7.0-fpm",
"mysql"
2018-01-24 20:18:53 +01:00
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
2019-03-09 10:14:08 +01:00
"en": "Choose a domain name for BlogoText",
"fr": "Choisissez un nom de domaine pour BlogoText"
2018-01-24 20:18:53 +01:00
},
"example": "example.com"
},
{
"name": "path",
"type": "path",
"ask": {
2019-03-09 10:14:08 +01:00
"en": "Choose a path for BlogoText",
"fr": "Choisissez un chemin pour BlogoText"
2018-01-24 20:18:53 +01:00
},
2019-03-09 10:14:08 +01:00
"example": "/blog",
"default": "/blog"
2018-01-24 20:18:53 +01:00
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose an admin user",
"fr": "Choisissez ladministrateur"
},
2019-03-09 10:14:08 +01:00
"example": "johndoe"
2018-01-24 20:18:53 +01:00
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public application?",
"fr": "Est-ce une application publique ?"
},
"default": true
},
{
"name": "language",
2019-03-09 10:14:08 +01:00
"type": "string",
2018-01-24 20:18:53 +01:00
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["fr", "en"],
"default": "fr"
2019-03-09 10:14:08 +01:00
},
{
"name": "password",
"type": "password",
"ask": {
"en": "Set the administrator password",
"fr": "Définissez le mot de passe administrateur"
}
2018-01-24 20:18:53 +01:00
}
]
}
}