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
2022-04-18 23:18:28 +07:00

79 lines
2.7 KiB
JSON

{
"name": "Outline wiki",
"id": "outline",
"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": "0.63.0~ynh2",
"url": "www.getoutline.com",
"upstream": {
"license": "BUSL-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.2.4"
},
"multi_instance": false,
"services": [
"nginx"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain"
},
{
"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": "en"
},
{
"name": "dex_domain",
"type": "domain",
"ask": "Domain for authentification. It can't be the same domain as above. Dex app will be installed and used for the authentification mechanism"
},
{
"name": "dex_path",
"type": "path",
"default": "/",
"ask": "Path for authentification url. Please don't use 'auth' as it will break Nginx configuration"
},
{
"name": "minio_domain",
"type": "domain",
"ask": "Domain for MinIO app, used for images and attachements storage. If not yet installed, it will automatically be. Minio has to be installed at the root"
},
{
"name": "minio_admin",
"type": "user",
"ask": "Admin for MinIO app, used for images and attachements storage. Please note that if MinIO is already installed, that setting won't be used"
},
{
"name": "minio_password",
"type": "password",
"ask": "Password for MinIO admin"
}
]
}
}