forked from YunoHost/example_ynh
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
70 lines (70 loc) · 1.58 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
{
"name": "Offen",
"id": "offen",
"packaging_format": 1,
"description": {
"en": "An open alternative to common web analytics tools. Gain insights while your users have full access to their data."
},
"version": "1.4.2~ynh1",
"url": "https://www.offen.dev",
"license": "Apache-2.0",
"maintainer": {
"name": "Frederik Ring",
"email": "[email protected]",
"url": "https://www.offen.dev"
},
"requirements": {
"yunohost": ">= 3.7"
},
"multi_instance": true,
"services": [
"nginx",
"mysql"
],
"arguments": {
"install": [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a subdomain for your Offen instance"
},
"example": "offen.example.com"
},
{
"name": "admin",
"type": "string",
"ask": {
"en": "Provide an email address for your user to log in (you can create additional users later)"
},
"example": "[email protected]"
},
{
"name": "password",
"type": "password",
"ask": {
"en": "Set the user password"
},
"example": "Choose a password"
},
{
"name": "account",
"type": "string",
"ask": {
"en": "Choose an account name (you can create further accounts later)"
}
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language"
},
"choices": [
"en"
],
"default": "en"
}
]
}
}