forked from YunoHost-Apps/ci_ynh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
68 lines (68 loc) · 1.52 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
{
"name": "ci_ynh",
"id": "ci_ynh",
"packaging_format": 1,
"description": {
"en": "Web based management to catalog things including state and location etc."
},
"version": "0.1.0alpha0~ynh",
"url": "https://github.comYunoHost-Apps/ci_ynh",
"license": "GPL-3.0",
"maintainer": {
"name": "Jens Diemer",
"email": "[email protected]"
},
"previous_maintainers": [],
"requirements": {
"yunohost": ">= 4.0"
},
"multi_instance": true,
"services": [
"nginx"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for ci_ynh",
"fr": "Choisissez un domaine pour ci_ynh"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for ci_ynh",
"fr": "Choisissez un chemin pour ci_ynh"
},
"example": "/ci_ynh",
"default": "/ci_ynh"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose an admin user for ci_ynh",
"fr": "Choisissez l'administrateur pour ci_ynh"
},
"example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Should ci_ynh be public accessible?",
"fr": "ci_ynh doit-il être accessible au public ?"
},
"help": {
"en": "Any YunoHost user and anonymous people from the web will be able to access the application",
"fr": "Tout utilisateur YunoHost et les personnes anonymes pourront accéder à l'application"
},
"default": false
}
]
}
}