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

76 lines
2.2 KiB
JSON
Raw Normal View History

2018-01-24 20:18:53 +01:00
{
"name": "Blogotext",
"id": "blogotext",
"packaging_format": 1,
"description": {
"en": "The lightweight SQLite Blog-Engine and CMS.",
"fr": "Un moteur de contenu et de blog léger basé sur SQLite"
},
"version": "1.0",
"url": "https://blogotext.org/",
"license": "MIT",
"maintainer": {
"name": "thuban",
"email": "thuban@yeuxdelibad.net",
"url": "https://yeuxdelibad.net"
},
"requirements": {
"yunohost": ">= 2.7.2"
},
"multi_instance": true,
"services": [
"nginx",
"php5-fpm"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for blogotext",
"fr": "Choisissez un nom de domaine pour blogotext"
},
"example": "example.com"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for blogotext",
"fr": "Choisissez un chemin pour blogotext"
},
"example": "/example",
"default": "/example"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose an admin user",
"fr": "Choisissez ladministrateur"
},
"example": "batman"
},
{
"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"
}
]
}
}