-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
49 lines (49 loc) · 1.33 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "Octoprint",
"id": "octoprint",
"packaging_format": 1,
"description": {
"en": "3D printing webserver",
"fr": "Serveur d'impression 3D"
},
"version": "1.0.0",
"url": "https://github.com/Tropicao/octoprint_ynh",
"license": "Apache-2.0",
"maintainer": {
"name": "Tropicao",
"email": "[email protected]"
},
"requirements": {
"yunohost": ">= 3.1"
},
"multi_instance": false,
"services": [
"nginx"
],
"arguments": {
"install": [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for Octoprint",
"fr": "Choisissez un domaine pour Octoprint"
},
"example": "domain.org"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Should this application be public ? (if so, your 3D printer will be accessible by anyone on internet)",
"fr": "Est-ce que cette application doit être visible publiquement ? (dans ce cas, n'importe qui sur internet pourra utiliser votre imprimante)"
},
"help": {
"en": "If public, your 3D printer will be accessible by anyone on internet",
"fr": "Dans ce cas, n'importe qui sur internet pourra utiliser votre imprimante"
},
"default": false
}
]
}
}