-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
108 lines (108 loc) · 3.09 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"id": "velican",
"name": "Velican Blogging Engine",
"packaging_format": 1,
"description": {
"en": "Javascript application to edit your files and WebDAV endpoint to store the files"
},
"version": "1.0~ynh3",
"url": "https://github.com/katomaso/velican_ynh",
"license": "GPL-3.0-only",
"maintainer": {
"name": "Tomas Peterka",
"email": "[email protected]"
},
"requirements": {
"yunohost": ">= 3.6.0"
},
"multi_instance": false,
"services": [
"nginx"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for your Webapp",
"fr": "Choisissez un domaine pour votre Webapp"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for your Webapp",
"fr": "Choisissez un chemin pour votre Webapp"
},
"example": "/",
"default": "/"
},
{
"name": "password",
"type": "password",
"optional": true,
"ask": {
"en": "Admin user password"
},
"example": "S0meStrongP^^s"
},
{
"name": "theme_name",
"type": "string",
"ask": {
"en": "Name of the root folder in the ZIP archive"
},
"example": "mytheme",
"default": "mytheme"
},
{
"name": "theme_url",
"type": "string",
"ask": {
"en": "URL that points to ZIPped theme"
},
"example": "github.com/myprofile/mytheme/master.zip",
"default": ""
},
{
"name": "author",
"type": "string",
"ask": {
"en": "Author"
},
"example": "Your Name",
"default": ""
},
{
"name": "title",
"type": "string",
"ask": {
"en": "Site title"
},
"example": "My Blog",
"default": ""
},
{
"name": "subtitle",
"type": "string",
"ask": {
"en": "Site subtitle "
},
"example": "Where all my knowledge is stored",
"default": ""
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public website?",
"fr": "Est-ce un site public ?"
},
"default": true
}
]
}
}