forked from matlink/gitweb_ynh
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
76 lines (74 loc) · 2.2 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
70
71
72
73
74
75
76
{
"name": "Gitweb",
"id": "gitweb",
"packaging_format": 1,
"url": "https://github.com/rigelk/gitweb_ynh",
"description": {
"en": "Web interface to see gitolite repositories",
"fr": "Une interface web pour consulter les dépôts gitolite"
},
"maintainer": {
"name": "rigelk",
"email": "par@rigelk.eu",
"url": "https://rigelk.eu"
},
"requirements": {
"yunohost": ">> 2.5.4"
},
"license": "free",
"services": [
"nginx"
],
"multi_instance": false,
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for Gitweb",
"fr": "Choisissez un domaine pour Gitweb"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for Gitweb",
"fr": "Choisissez un chemin pour Gitweb"
},
"example": "/gitweb",
"default": "/gitweb"
},
{
"name": "git_project_root",
"type": "path",
"ask": {
"en": "Choose an existing git project root for Gitweb",
"fr": "Choisissez un chemin existant où chercher vos projects git pour Gitweb"
},
"example": "/home/git/repositories",
"default": "/home/git/repositories"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose an admin for Gitweb",
"fr": "Choisissez un administrateur pour Gitweb"
},
"example": "homer"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Should this application be public ?",
"fr": "Est-ce que cette application doit être visible publiquement ?"
},
"default": true
}
]
}
}