1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/owntracks_ynh.git synced 2024-09-03 19:56:24 +02:00
owntracks_ynh/manifest.json
Romain Pesche 5db6f53a15 add ability to make owntracks public
This commit allow a config where owntracks web application become
public.

A parameter is_public can be set to true to make it public.
An user is selected to be displayed at install.
2019-10-23 00:16:09 +02:00

74 lines
1.7 KiB
JSON

{
"name": "Owntracks",
"id": "owntracks",
"packaging_format": 1,
"description": {
"en": "Keep track of your location history",
"fr": "Gérez votre historique de géolocalisation"
},
"version": "0.1-beta.8",
"url": "http://owntracks.org/",
"license": "free",
"maintainer": {
"name": "Titus PiJean",
"email": "tituspijean@outlook.com",
"url": "https://github.com/tituspijean/owntracks_ynh"
},
"requirements": {
"yunohost": ">= 2.7.2"
},
"multi_instance": true,
"services": [
"nginx",
"php5-fpm",
"mysql"
],
"arguments": {
"install": [{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for Owntracks",
"fr": "Choisissez un nom de domaine pour Owntracks"
},
"example": "example.com"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for Owntracks",
"fr": "Choisissez un chemin pour Owntracks"
},
"example": "/owntracks",
"default": "/owntracks"
},
{
"name": "user",
"type": "user",
"ask": {
"en": "Choose an user for Owntracks",
"fr": "Choisissez un utilisateur pour Owntracks"
},
"help": {
"en": "If public, this user trace will be public ",
"fr": "Si publique, les traces de cet utilisateur seront publiques."
},
"optional": "true"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public application?",
"fr": "Est-ce une application publique ?"
},
"help": {
"en": "If public, anyone will be able to see the owntracks record from specified user.",
"fr": "Si publique, quiconque aura accès aux traces owntracks de l'utilisateur specifié."
},
"default": false
}
]
}
}