1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/uptime-kuma_ynh.git synced 2024-10-01 13:34:58 +02:00
uptime-kuma_ynh/manifest.json

54 lines
1.6 KiB
JSON
Raw Normal View History

2021-11-01 18:18:52 +01:00
{
2021-11-01 18:21:39 +01:00
"name": "Uptime Kuma",
"id": "uptime-kuma",
2021-11-01 18:18:52 +01:00
"packaging_format": 1,
"description": {
"en": "Explain in *a few (10~15) words* the purpose of the app or what it actually does (it is meant to give a rough idea to users browsing a catalog of 100+ apps)",
"fr": "Expliquez en *quelques* (10~15) mots l'utilité de l'app ou ce qu'elle fait (l'objectif est de donner une idée grossière pour des utilisateurs qui naviguent dans un catalogue de 100+ apps)"
},
"version": "1.0~ynh1",
"url": "https://example.com",
"upstream": {
"license": "free",
"website": "https://example.com",
"demo": "https://demo.example.com",
"admindoc": "https://yunohost.org/packaging_apps",
"userdoc": "https://yunohost.org/apps",
"code": "https://some.forge.com/example/example"
},
"license": "free",
"maintainer": {
"name": "John doe",
"email": "john.doe@example.com"
},
"requirements": {
"yunohost": ">= 4.1.3"
},
"multi_instance": true,
"services": [
2021-11-01 18:21:39 +01:00
"nginx"
2021-11-01 18:18:52 +01:00
],
"arguments": {
2021-11-01 18:21:39 +01:00
"install": [
2021-11-01 18:18:52 +01:00
{
"name": "domain",
"type": "domain"
},
{
"name": "path",
"type": "path",
"example": "/example",
"default": "/example"
},
{
"name": "admin",
"type": "user"
},
{
"name": "is_public",
"type": "boolean",
"default": true
}
]
}
2021-11-01 18:21:39 +01:00
}