-
Notifications
You must be signed in to change notification settings - Fork 11
/
manifest.json
69 lines (69 loc) · 1.65 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "Element",
"id": "element",
"packaging_format": 1,
"requirements": {
"yunohost": ">= 4.2.6.1"
},
"description": {
"en": "A web client for matrix",
"fr": "Un client web pour matrix"
},
"version": "1.7.33~ynh1",
"url": "https://element.io",
"license": "Apache-2.0",
"maintainer": {
"name": "Josué Tille",
"email": "[email protected]"
},
"multi_instance": true,
"services": [
"nginx"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for Element",
"fr": "Choisissez un domaine pour Element"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for Element",
"fr": "Choisissez un chemin pour Element"
},
"example": "/element",
"default": "/element"
},
{
"name": "default_home_server",
"type": "string",
"ask": {
"en": "Choose a default home server",
"fr": "Choisissez un serveur par défault"
},
"example": "my-own-homeserver.tld",
"default": "matrix.org"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public application?",
"fr": "Est-ce une application publique ?"
},
"help": {
"en": "A public application means that anyone can access it. Note that this application provides just files (html, javascript, images, etc.)",
"fr": "Une application publique signifie que n'importe qui peut y accéder. Notez que cette application ne fournit que des fichiers (html, javascript, images, etc.)"
},
"default": false
}
]
}
}