forked from YunoHost-Apps/umap_ynh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
145 lines (145 loc) · 4.56 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "umap",
"id": "umap",
"packaging_format": 1,
"requirements": {
"yunohost": ">> 2.3.15"
},
"description": {
"fr": "Logiciel libre de cartographie"
},
"url": "https://umap.openstreetmap.fr/",
"license": "AGPLv3",
"maintainer": {
"name": "frju365, cyp",
"email": "win10@tutanota.com, cyp@rouquin.me"
},
"multi_instance": false,
"services": [
"nginx",
"php5-fpm"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for umap",
"fr": "Choisissez un domaine pour umap"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for umap",
"fr": "Choisissez un chemin pour umap"
},
"example": "/",
"default": "/"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose the umap administrator (must be an existing YunoHost user)",
"fr": "Choisissez un administrateur umap (doit être un utilisateur YunoHost)"
},
"example": "john"
},
{
"name": "language",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["en_EN", "fr_FR"],
"default": "fr_FR"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public umap site ?",
"fr": "Est-ce un site public ?"
},
"default": "true"
},
{
"name": "github_key",
"optional": "True",
"ask": {
"en": "GitHub Key (Optional field)",
"fr": "Clé GitHub (Champs optionnel)"
}
},
{
"name": "github_secret",
"optional": "True",
"ask": {
"en": "GitHub Secret Key (Optional field)",
"fr": "Clé secret GitHub (Champs optionnel)"
}
},
{
"name": "github_scope",
"optional": "True",
"ask": {
"en": "GitHub Scope (Optional field)",
"fr": "GitHub Scope (Champs optionnel)"
},
"example": "[\"user:email\", ]"
},
{
"name": "bitbucket_key",
"optional": "True",
"ask": {
"en": "Bitbucket Key (Optional field)",
"fr": "Clé Bitbucket (Champs optionnel)"
}
},
{
"name": "bitbucket_secret",
"optional": "True",
"ask": {
"en": "Bitbucket Secret Key (Optional field)",
"fr": "Clé secret Bitbucket (Champs optionnel)"
}
},
{
"name": "twitter_key",
"optional": "True",
"ask": {
"en": "Twitter Key (Optional field)",
"fr": "Clé Twitter (Champs optionnel)"
}
},
{
"name": "twitter_secret",
"optional": "True",
"ask": {
"en": "Twitter Secret Key (Optional field)",
"fr": "Clé secret Twitter (Champs optionnel)"
}
},
{
"name": "openstreetmap_key",
"optional": "True",
"ask": {
"en": "Openstreetmap Key (Optional field)",
"fr": "Clé Openstreetmap (Champs optionnel)"
}
},
{
"name": "openstreetmap_secret",
"optional": "True",
"ask": {
"en": "Openstreetmap Secret Key (Optional field)",
"fr": "Clé secret Openstreetmap (Champs optionnel)"
}
}
]
}
}