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

80 lines
2.7 KiB
JSON
Raw Normal View History

2021-09-21 00:25:53 +02:00
{
2021-09-21 15:21:52 +02:00
"name": "Outline wiki",
"id": "outline",
2021-09-21 00:25:53 +02:00
"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
},
2022-04-16 08:51:59 +02:00
"version": "0.63.0~ynh1",
2021-09-21 00:49:44 +02:00
"url": "www.getoutline.com",
2021-09-21 00:25:53 +02:00
"upstream": {
2022-03-30 09:50:02 +02:00
"license": "BUSL-1.1",
2021-09-21 00:49:44 +02:00
"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": {
2021-09-23 20:12:33 +02:00
"yunohost": ">= 4.2.4"
2021-09-21 00:25:53 +02:00
},
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",
2022-04-01 05:08:34 +02:00
"type": "domain"
2021-09-21 00:25:53 +02:00
},
{
"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"
2021-09-22 02:11:01 +02:00
},
{
"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"
2021-09-22 02:11:01 +02:00
},
{
"name": "dex_path",
"type": "path",
2022-04-01 04:57:51 +02:00
"default": "/",
"ask": "Path for authentification url. Please don't use 'auth' as it will break Nginx configuration"
2021-11-09 17:50:33 +01:00
},
{
"name": "minio_domain",
"type": "domain",
2022-03-30 10:19:12 +02:00
"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",
2022-04-16 09:20:48 +02:00
"ask": "Password for MinIO admin"
2021-09-21 00:25:53 +02:00
}
]
}
}