forked from YunoHost-Apps/dokuwiki_ynh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
67 lines (67 loc) · 2.29 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
{
"name": "Dokuwiki",
"id": "dokuwiki",
"packaging_format": 1,
"requirements": {
"yunohost": ">> 2.3.15"
},
"description": {
"en": "DokuWiki is a simple to use and highly versatile Open Source wiki software that doesn't require a database.",
"fr": "DokuWiki est un wiki Open Source simple à utiliser et très polyvalent qui n'exige aucune base de données.",
"de": "DokuWiki ist ein standardkonformes, einfach zu benutzendes Wiki und zielt hauptsächlich auf die Erstellung von Dokumentationen aller Art ab.",
"es": "DokuWiki es un sistema de Wiki de uso sencillicimo y compatible con los estándares.",
"it": "DokuWiki è un Wiki aderente agli standard, semplice da usare, finalizzato principalmente alla creazione di documentazione di qualsiasi tipo."
},
"url": "https://www.dokuwiki.org",
"maintainer": {
"name": "opi",
"email": "[email protected]"
},
"multi_instance": "true",
"services": [
"nginx",
"php5-fpm"
],
"license": "free",
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for DokuWiki",
"fr": "Choisissez un domaine pour DokuWiki"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for DokuWiki",
"fr": "Choisissez un chemin pour DokuWiki"
},
"example": "/dokuwiki",
"default": "/dokuwiki"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose an admin user",
"fr": "Choisissez l'administrateur"
},
"example": "johndoe"
},
{
"name": "is_public",
"ask": {
"en": "Is it a public DokuWiki site ?",
"fr": "Est-ce un site public ?"
},
"choices": ["Yes", "No"],
"default": "Yes"
}
]
}
}