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

69 lines
2.1 KiB
JSON
Raw Normal View History

2017-10-22 01:11:59 +02:00
{
"name": "ulogger",
"id": "ulogger",
"packaging_format": 1,
"description": {
2021-01-26 09:14:29 +01:00
"en": "Real-time collection of geolocation data, tracks viewing and management.",
"fr": "Géolocalisation en temps réel, gestion et affichage de traces."
2017-10-22 01:11:59 +02:00
},
2022-07-15 13:59:34 +02:00
"version": "1.1~ynh1",
2017-10-22 01:11:59 +02:00
"url": "https://github.com/bfabiszewski/ulogger-server",
2022-07-15 14:11:44 +02:00
"upstream": {
2022-07-15 14:06:12 +02:00
"license": "AGPL-3.0",
"website": "https://github.com/bfabiszewski/ulogger-server",
"code": "https://github.com/bfabiszewski/ulogger-server"
2022-07-15 14:08:22 +02:00
},
2021-01-26 09:09:25 +01:00
"license": "AGPL-3.0-only",
2017-10-22 01:11:59 +02:00
"maintainer": {
"name": "Anmol Sharma",
"email": "anmol@datamol.org"
},
"requirements": {
2022-07-15 14:11:44 +02:00
"yunohost": ">= 4.3.0"
2017-10-22 01:11:59 +02:00
},
"multi_instance": true,
"services": [
"nginx",
2021-02-07 10:25:59 +01:00
"php7.3-fpm",
2017-10-22 01:11:59 +02:00
"mysql"
],
"arguments": {
"install" : [
{
"name": "domain",
2022-07-15 14:32:15 +02:00
"type": "domain"
2017-10-22 01:11:59 +02:00
},
{
"name": "path",
"type": "path",
2019-04-11 14:32:22 +02:00
"example": "/ulogger",
"default": "/ulogger"
2017-10-22 01:11:59 +02:00
},
{
"name": "admin",
2019-04-11 14:32:22 +02:00
"type": "string",
2017-10-22 01:11:59 +02:00
"example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
2022-07-15 14:06:12 +02:00
"help": {
"en": "If enabled, ulogger 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, ulogger sera accessible aux personnes nayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin."
},
2022-07-15 14:13:12 +02:00
"default": true
},
2017-10-22 01:11:59 +02:00
{
"name": "language",
2021-01-26 08:54:30 +01:00
"type": "string",
2017-10-22 01:11:59 +02:00
"ask": {
2021-01-26 09:37:10 +01:00
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
2017-10-22 01:11:59 +02:00
},
"choices": ["fr", "en", "pl", "de", "hu", "it" ],
"default": "en"
}
]
}
}