forked from YunoHost-Apps/my_webapp_ynh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
85 lines (85 loc) · 2.51 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
{
"name": "Application web",
"id": "eleve",
"packaging_format": 1,
"description": {
"en": "Custom Web app with SFTP access to serve static (HTML, CSS, JS) and PHP files",
"fr": "Application Web personnalisée avec accès SFTP pour servir des fichiers statiques (HTML, CSS, JS) et PHP"
},
"version": "1.0~ynh10",
"url": "https://github.com/runcros/webapp_lgb",
"license": "GPL-3.0-only",
"maintainer": {
"name": "runcros",
"email": "[email protected]"
},
"previous_maintainers": [{
"name": "Maniack Crudelis",
"email": "[email protected]"
}],
"requirements": {
"yunohost": ">= 11.0.9"
},
"multi_instance": true,
"services": [
"nginx",
"php7.4-fpm",
"mysql"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain"
},
{
"name": "path",
"type": "path",
"example": "/eleve",
"default": "/eleve"
},
{
"name": "with_sftp",
"type": "boolean",
"ask": {
"en": "Do you need a SFTP access?",
"fr": "Avez-vous besoin d'un accès SFTP ?"
},
"default": true
},
{
"name": "password",
"type": "string",
"ask": {
"en": "Password:",
"fr": "Mot de passe:"
},
"default": "eleveslgb"
},
{
"name": "is_public",
"type": "boolean",
"default": false
},
{
"name": "phpversion",
"type": "string",
"ask": {
"en": "Choose a PHP version you want to use for your app",
"fr": "Choisissez une version PHP que vous souhaitez utiliser pour votre application"
},
"choices" : ["none", "7.3", "7.4", "8.0"],
"default" : "7.4"
},
{
"name": "with_mysql",
"type": "boolean",
"ask": {
"en": "Do you need a MySQL database?",
"fr": "Avez-vous besoin d'une base de données MySQL ?"
},
"default": false
}
]
}
}