1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/n8n_ynh.git synced 2024-09-03 19:55:52 +02:00
n8n_ynh/manifest.json

61 lines
1.8 KiB
JSON
Raw Normal View History

2021-09-18 14:27:12 +02:00
{
"name": "n8n",
"id": "n8n",
"packaging_format": 1,
"description": {
2021-09-18 16:26:07 +02:00
"en": "Workflow Automation Tool. Easily automate tasks across different services.",
"fr": "Outil d'automatisation du flux de travail. Automatisez facilement les tâches sur différents services."
2021-09-18 14:27:12 +02:00
},
"version": "0.138.0~ynh1",
"url": "https://n8n.io/",
"upstream": {
"license": "Apache-2.0",
"website": "https://n8n.io/",
"demo": "https://demo.example.com",
2021-09-18 14:36:33 +02:00
"admindoc": "https://docs.n8n.io/",
2021-09-18 14:27:12 +02:00
"code": "https://github.com/n8n-io/n8n"
},
2021-09-18 16:26:07 +02:00
"license": "Apache-2.0",
2021-09-18 14:27:12 +02:00
"maintainer": {
2021-09-18 14:36:33 +02:00
"name": ""
2021-09-18 14:27:12 +02:00
},
"requirements": {
"yunohost": ">= 4.2.4"
},
"multi_instance": true,
"services": [
"nginx"
],
"arguments": {
"install" : [
{
"name": "domain",
2021-09-18 15:09:34 +02:00
"type": "domain"
2021-09-18 14:27:12 +02:00
},
{
"name": "path",
"type": "path",
"example": "/n8n",
"default": "/n8n"
},
2021-09-18 15:04:33 +02:00
{
"name": "admin",
2021-09-18 16:34:38 +02:00
"type": "user"
2021-09-18 15:04:33 +02:00
},
2021-09-18 14:27:12 +02:00
{
"name": "is_public",
"type": "boolean",
"help": {
2021-09-18 16:26:07 +02:00
"en": "If enabled, n8n will be accessible by people who do not have an account. This can be changed later via the webadmin.",
"fr": "Si cette case est cochée, n8n sera accessible aux personnes nayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin."
2021-09-18 14:27:12 +02:00
},
"default": true
2021-09-18 15:04:33 +02:00
},
{
"name": "password",
2021-09-18 16:34:38 +02:00
"type": "password"
2021-09-18 14:27:12 +02:00
}
]
}
}