forked from YunoHost-Apps/freshrss_ynh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
68 lines (68 loc) · 1.97 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
{
"name": "FreshRSS",
"id": "freshrss",
"packaging_format": 1,
"description": {
"en": "FreshRSS is a selfhostable RSS reader",
"fr": "FreshRSS est un agrégateur de flux RSS à auto-héberger"
},
"version": "1.15.2~ynh1",
"url": "http://freshrss.org/",
"license": "AGPL-3.0-only",
"maintainer": {
"name": "plopoyop",
"email": "[email protected]"
},
"requirements": {
"yunohost": ">= 3.5"
},
"multi_instance": true,
"services": [
"nginx",
"php7.0-fpm",
"mysql"
],
"arguments": {
"install": [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for FreshRSS",
"fr": "Choisissez un nom de domaine pour FreshRSS"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for FreshRSS",
"fr": "Choisissez un chemin pour FreshRSS"
},
"example": "/rss",
"default": "/rss"
},
{
"name": "admin",
"type": "user",
"optional": false,
"ask": {
"en": "Choose an admin user",
"fr": "Choisissez l’administrateur"
},
"example": "homer"
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["cz", "de", "en", "es", "fr", "he", "it", "kr", "nl", "oc", "pt", "ru", "tr", "zh-cn"],
"default": "fr"
}
]
}
}