forked from YunoHost-Apps/agora_ynh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
68 lines (68 loc) · 1.86 KB
/
manifest.json
File metadata and controls
68 lines (68 loc) · 1.86 KB
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
{
"name": "Agora",
"id": "agora",
"packaging_format": 1,
"description": {
"en": "Free software for collaboration and creation of digital space",
"fr": "Logiciel libre de collaboration et de création d'espace numérique"
},
"version": "1.0~ynh1",
"url": "https://www.agora-project.net/",
"upstream": {
"license": "GPL-2.0-only",
"website": "https://www.agora-project.net",
"admindoc": "https://www.agora-project.net/index.php?ctrl=offline&action=Documentation",
"code": "https://github.com/xech/agora-project"
},
"license": "GPL-2.0-only",
"maintainer": {
"name": "frju365",
"email": "win10@tutanota.com"
},
"requirements": {
"yunohost": ">= 4.3.0"
},
"multi_instance": true,
"services": [
"nginx",
"php7.3-fpm",
"mysql"
],
"arguments": {
"install": [
{
"name": "domain",
"type": "domain"
},
{
"name": "path",
"type": "path",
"example": "/agora",
"default": "/agora"
},
{
"name": "is_public",
"type": "boolean",
"default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["francais", "english", "espanol"],
"default": "francais"
},
{
"name": "admin",
"type": "user"
},
{
"name": "password",
"type": "password"
}
]
}
}