1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ergo_ynh.git synced 2024-09-03 18:26:31 +02:00
ergo_ynh/manifest.json

96 lines
2.7 KiB
JSON
Raw Normal View History

2022-04-18 11:09:01 +02:00
{
"name": "Ergo",
"id": "ergo",
"packaging_format": 1,
"description": {
"en": "A modern IRC server (daemon/ircd) written in Go",
"fr": "A modern IRC server (daemon/ircd) written in Go"
},
2022-07-07 19:06:23 +02:00
"version": "2.10.0~ynh2",
2022-04-18 11:09:01 +02:00
"url": "https://ergo.chat/",
"upstream": {
"license": "MIT",
"website": "https://ergo.chat/",
"demo": "https://testnet.ergo.chat/",
"admindoc": "https://github.com/ergochat/ergo/blob/stable/docs/MANUAL.md",
"userdoc": "https://github.com/ergochat/ergo/blob/stable/docs/USERGUIDE.md",
"code": "https://github.com/ergochat/ergo"
},
"license": "MIT",
"maintainer": {
2022-07-06 19:11:48 +02:00
"name": "Navan Chauhan",
"email": "ergochat_ynh@navan.email"
2022-04-18 11:09:01 +02:00
},
"requirements": {
"yunohost": ">= 4.3.0"
},
"multi_instance": true,
"services": [
"nginx",
"mysql"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain"
},
{
"name": "path",
"type": "path",
"example": "/ergo",
"default": "/ergo"
},
{
"name": "is_public",
"type": "boolean",
2022-07-06 18:03:07 +02:00
"default": true,
"help": {
"en": "Enable WebIRC For Public"
}
2022-04-18 12:00:11 +02:00
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["en", "en-AU", "el", "es", "fr-FR", "no", "pl", "pt-BR", "ro", "tr-TR", "zh-CN"],
"default": "fr-FR"
2022-06-02 07:02:05 +02:00
},
{
"name": "network_name",
"type": "string",
2022-07-08 14:00:21 +02:00
"default": "ErgoYunoHost",
2022-07-06 19:44:01 +02:00
"ask": {
2022-07-06 19:11:48 +02:00
"en": "Network Name"
}
2022-06-02 07:02:05 +02:00
},
{
"name": "server_name",
"type": "string",
2022-07-06 19:11:48 +02:00
"default": "ergo.yunohost",
2022-07-06 19:44:01 +02:00
"ask": {
2022-07-06 19:11:48 +02:00
"en": "Server Name"
}
2022-07-06 17:58:27 +02:00
},
{
"name": "password",
"type": "password",
2022-07-06 19:44:01 +02:00
"help": {
"en": "For using /OPER admin"
2022-07-06 17:58:27 +02:00
}
},
{
"name": "enable_ldap",
"type": "boolean",
"default": false,
2022-07-06 19:44:01 +02:00
"ask": {
2022-07-06 17:58:27 +02:00
"en": "Enable ldap authentication script"
}
2022-04-18 11:09:01 +02:00
}
]
}
}