This repository has been archived by the owner on Mar 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
88 lines (88 loc) · 2.33 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
{
"name": "Movim",
"id": "movim",
"description": {
"en": "The Kickass Social Network"
},
"url": "https://movim.eu/",
"license": "AGPL-3",
"maintainer": {
"name": "src386",
"email": "[email protected]",
"url": "http://github.com/src386"
},
"services": [
"nginx",
"php5-fpm",
"mysql",
"metronome"
],
"multi_instance": false,
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Domain of the pod",
"fr": "Domaine du pod"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Path to the pod",
"fr": "Chemin vers le pod"
},
"example": "/movim",
"default": "/movim"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Pod administrator",
"fr": "Administrateur du pod"
},
"example": "homer"
},
{
"name": "password",
"type": "password",
"ask": {
"en": "Administrator password",
"fr": "Mot de passe administrateur"
},
"example" : "password"
},
{
"name": "language",
"ask": {
"en": "Pod language",
"fr": "Langue du pod"
},
"choices" : ["ar", "de", "en", "es", "fr", "it", "ja", "nl", "ru"],
"default" : "en"
},
{
"name": "ssoenabled",
"ask": {
"en": "Enable SSO support (autologin) ?",
"fr": "Activer le support SSO (connexin auto) ?"
},
"choices": ["Yes", "No"],
"default": "Yes"
},
{
"name": "port",
"ask": {
"en": "Movim daemon port (internal only)",
"fr": "Port du daemon Movim (interne uniquement)"
},
"default": "9537"
}
]
}
}