This repository has been archived by the owner on Jan 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
68 lines (68 loc) · 2.19 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
{
"packaging_format": 1,
"name": "GNU Social",
"id": "gnusocial",
"description": {
"en": "Create a federated comunication node",
"fr": "Créer un noeud de communication fédéré",
"es": "Crea un nodo de comunicación federado"
},
"url": "https://www.gnu.io/",
"maintainer": {
"name": "Gustavo Moreno",
"email": "gustavo@laenredadera.net"
},
"multi_instance": true,
"license": "free",
"services": [
"nginx",
"php5-fpm",
"mysql"
],
"requirements": {
"yunohost": ">= 2.3.16"
},
"arguments": {
"install" : [
{
"name": "name",
"ask": {
"en": "Choose a name for the GNU Social node",
"fr": "Choisissez un nom pour le noeud GNU Social",
"es": "Escoge un nombre para el nodo GNU Social"
},
"example": "node"
},
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a sub-domain for GNU Social",
"fr": "Choisissez un sous-domaine pour GNU Social",
"es": "Escoge un sub-dominio para GNU Social"
},
"example": "social.domain.org"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose the GNU Social administrator (must be an existing YunoHost user)",
"fr": "Choisissez un administrateur pour GNU Social",
"es": "Escoge un administrador para GNU Social (debe ser un usuario existente en YunoHost)"
},
"example": "homer"
},
{
"name": "profile",
"ask": {
"en": "What GNU Social profile?",
"fr": "Quel est le profil de GNU Social ?",
"es": "¿Qué perfil de GNU Social?"
},
"choices": ["Public", "Community", "Private"],
"default": "Public"
}
]
}
}