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

61 lines
1.7 KiB
JSON
Raw Normal View History

2021-09-21 00:25:53 +02:00
{
"name": "Example app",
"id": "example",
"packaging_format": 1,
"description": {
2021-09-21 00:49:44 +02:00
"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"
2021-09-21 00:25:53 +02:00
},
2021-09-21 00:49:44 +02:00
"version": "59.0~ynh1",
"url": "www.getoutline.com",
2021-09-21 00:25:53 +02:00
"upstream": {
2021-09-21 00:49:44 +02:00
"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"
2021-09-21 00:25:53 +02:00
},
2021-09-21 00:49:44 +02:00
"license": "AGPL-3.0-only",
2021-09-21 00:25:53 +02:00
"maintainer": {
"name": "Raoul de Limezy"
2021-09-21 00:25:53 +02:00
},
"requirements": {
"yunohost": ">= 4.1.3"
},
2021-09-21 00:49:44 +02:00
"multi_instance": false,
2021-09-21 00:25:53 +02:00
"services": [
"nginx"
2021-09-21 00:25:53 +02:00
],
"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"
}
]
}
}