mirror of
https://github.com/YunoHost-Apps/blogotext_ynh.git
synced 2024-09-03 18:15:52 +02:00
76 lines
2.2 KiB
JSON
76 lines
2.2 KiB
JSON
|
{
|
|||
|
"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 l’administrateur"
|
|||
|
},
|
|||
|
"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"
|
|||
|
}
|
|||
|
]
|
|||
|
}
|
|||
|
}
|