1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/outline_ynh.git synced 2024-09-03 19:56:12 +02:00
outline_ynh/manifest.json
Limezy 13e02eb820
Correct manifest.json 2
Corrupted JSON read from /var/cache/yunohost/app_tmp_work_dirs/app_msxp50v0/manifest.json (reason: Expecting value: line 29 column 5 (char 888))
2021-09-21 21:15:02 +08:00

60 lines
1.7 KiB
JSON

{
"name": "Example app",
"id": "example",
"packaging_format": 1,
"description": {
"en": "An open, extensible, wiki for your team built using React and Node.js.",
"fr": "Un wiki open source et évolutif pour votre équipe, conçu avec React et Node.js"
},
"version": "59.0~ynh1",
"url": "www.getoutline.com",
"upstream": {
"license": "BSL 1.1",
"website": "www.getoutline.com",
"demo": "https://app.getoutline.com/create",
"admindoc": "https://www.getoutline.com/developers",
"userdoc": "https://www.getoutline.com/about",
"code": "https://github.com/outline/outline"
},
"license": "AGPL-3.0-only",
"maintainer": {
"name": "Raoul de Limezy"
},
"requirements": {
"yunohost": ">= 4.1.3"
},
"multi_instance": false,
"services": [
"nginx"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"example": "example.com"
},
{
"name": "path",
"type": "path",
"example": "/example",
"default": "/example"
},
{
"name": "is_public",
"type": "boolean",
"default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["fr", "en"],
"default": "fr"
}
]
}
}