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 1
/
Copy pathmanifest.json
92 lines (92 loc) · 2.91 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
{
"name": "Freeboard",
"id": "freeboard",
"packaging_format": 1,
"description": {
"en": "A damn-sexy, open source real-time dashboard builder for IOT and other web mashups. A free open-source alternative to Geckoboard.",
"fr": "Créateur de dashboard fait pour l'IOT."
},
"url": "http://freeboard.io/",
"license": "free",
"maintainer": {
"name": "Alex",
"email": "apulido@free.fr",
"url": "https://github.com/Yunohost-Apps/freeboard_ynh"
},
"requirements": {
"yunohost": ">> 2.4.0"
},
"multi_instance": true,
"services": [
"nginx",
"php5-fpm",
"mysql"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for your dashboard",
"fr": "Choisissez un nom de domaine pour votre dashboard"
},
"example": "example.com"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for your dashboard",
"fr": "Choisissez un chemin pour votre dashboard"
},
"example": "/dashboard",
"default": "/dashboard"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose an admin user",
"fr": "Choisissez l’administrateur"
},
"example": "johndoe"
},
{
"name": "adv_html",
"type": "boolean",
"ask": {
"en": "Use dev Html ? (Permanent dashboard, more plugins...)",
"fr": "Utilisé l'Html développeur ? (Dashboard permanent, plus de plugins...)"
},
"default": false
},
{
"name": "dash_bool",
"type": "boolean",
"ask": {
"en": "Use permanent dashboard ? (Requires dev html)",
"fr": "Utilisé un dashoard permanent ? (Dev Html requis)"
},
"default": false
},
{
"name": "dash",
"ask": {
"en": "Permanent dashboard name, put it in /var/www/your_dashboard/",
"fr": "Dashboard permanent, à placer dand /var/www/votre_dashboard/"
},
"example": "dashboard.json"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public application?",
"fr": "Est-ce une application publique ?"
},
"default": true
}
]
}
}