forked from YunoHost-Apps/mycryptochat_ynh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
54 lines (53 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
50
51
52
53
54
{
"name": "MyCryptoChat",
"id": "mycryptochat",
"packaging_format": 1,
"description": {
"en": "Encrypted IM",
"fr": "Messagerie Instantanée chiffrée"
},
"url": "http://github.com/mrtino",
"license": "free",
"maintainer": {
"name": "mrtino",
"email": "[email protected]",
"url": "http://github.com/mrtino/"
},
"requirements": {
"yunohost": ">> 2.4.0"
},
"multi_instance": true,
"services": [
"nginx",
"php5-fpm",
"mysql"
],
"arguments": {
"install" : [
{
"name": "domain",
"ask": {
"en": "Choose a domain for MyCryptoChat"
},
"example": "domain.org"
},
{
"name": "path",
"ask": {
"en": "Choose a path for MyCryptoChat"
},
"example": "/mycryptochat",
"default": "/mycryptochat"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public site ?",
"fr": "Est-ce un site public ?"
},
"default": true
}
]
}
}