1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/syncthing_ynh.git synced 2024-09-03 20:26:23 +02:00
This commit is contained in:
yalh76 2019-04-14 00:34:30 +02:00
parent 88d741f1dd
commit 3d852129b4

View file

@ -1,61 +1,61 @@
{ {
"name": "Syncthing", "name": "Syncthing",
"id": "syncthing", "id": "syncthing",
"packaging_format": 1, "packaging_format": 1,
"description": { "description": {
"en": "Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized.", "en": "Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized.",
"fr": "Syncthing remplace les services propriétaires de synchro et de cloud avec quelque chose d'ouvert, digne de confiance et décentralisée." "fr": "Syncthing remplace les services propriétaires de synchro et de cloud avec quelque chose d'ouvert, digne de confiance et décentralisée."
}, },
"url": "https://syncthing.net/", "url": "https://syncthing.net/",
"license": "MPL-2.0", "license": "MPL-2.0",
"maintainer": { "maintainer": {
"name": "txmrl", "name": "txmrl",
"email": "txmrl@txmrl.net" "email": "txmrl@txmrl.net"
}, },
"requirements": { "requirements": {
"yunohost": ">= 3.4" "yunohost": ">= 3.4"
}, },
"multi_instance": false, "multi_instance": true,
"services": [ "services": [
"nginx" "nginx"
], ],
"arguments": { "arguments": {
"install": [ "install": [
{ {
"name": "domain", "name": "domain",
"type": "domain", "type": "domain",
"ask": { "ask": {
"en": "Choose a domain for Syncthing" "en": "Choose a domain for Syncthing"
}, },
"example": "domain.org" "example": "domain.org"
}, },
{ {
"name": "path", "name": "path",
"type": "path", "type": "path",
"ask": { "ask": {
"en": "Choose a path for Syncthing" "en": "Choose a path for Syncthing"
}, },
"example": "/syncthing", "example": "/syncthing",
"default": "/syncthing" "default": "/syncthing"
}, },
{ {
"name": "user", "name": "admin",
"type": "user", "type": "user",
"ask": { "ask": {
"en": "Choose the user for Syncthing (must be an existing yunohost user)", "en": "Choose the user for Syncthing (must be an existing yunohost user)",
"fr": "Choisissez l'utilisateur de Syncthing (doit être un utilisateur yunohost existant)" "fr": "Choisissez l'utilisateur de Syncthing (doit être un utilisateur yunohost existant)"
}, },
"example": "johndoe" "example": "johndoe"
}, },
{ {
"name": "channel", "name": "channel",
"ask": { "ask": {
"en": "Choose Syncthing channel ?", "en": "Choose Syncthing channel ?",
"fr": "Choissez la version de Syncthing ?" "fr": "Choissez la version de Syncthing ?"
}, },
"choices": ["stable", "candidate"], "choices": ["stable", "candidate"],
"default": "stable" "default": "stable"
} }
] ]
} }
} }