forked from YunoHost-Apps/jirafeau_ynh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
75 lines (75 loc) · 1.75 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
{
"name": "Jirafeau",
"id": "jirafeau",
"packaging_format": 1,
"requirements": {
"yunohost": ">= 2.4.0"
},
"description": {
"en": "Upload a file in a simple way and give a unique link to it",
"fr": "Hébergez simplement un fichier et partagez-le avec un lien unique"
},
"url": "https://gitlab.com/mojo42/Jirafeau",
"version": "3.2.0",
"license": "AGPLv3",
"maintainer": {
"name": "julien",
"email": "julien.malik@paraiso.me"
},
"multi_instance": false,
"services": [
"nginx",
"php5-fpm"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for Jirafeau",
"fr": "Choisissez un domaine pour Jirafeau"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for Jirafeau",
"fr": "Choisissez un chemin pour Jirafeau"
},
"example": "/jirafeau",
"default": "/jirafeau"
},
{
"name": "admin_user",
"type": "user",
"ask": {
"en": "Choose an admin user (will be able to access admin.php page)",
"fr": "Choisissez l'administrateur (seul autorisé à accéder à la page admin.php)"
},
"example": "johndoe"
},
{
"name": "upload_password",
"type": "password",
"optional": "true",
"ask": {
"en": "Set the password granting upload permissions (leave empty to allow anybody to upload)",
"fr": "Définissez le mot de passe permettant l'accès à l'envoi de fichiers (laissez vide pour autoriser tout le monde)"
},
"example": "supersecretpassword"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public Jirafeau site?",
"fr": "Est-ce un site public ?"
},
"default": true
}
]
}
}