forked from YunoHost-Apps/drupal_ynh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
83 lines (83 loc) · 2.17 KB
/
Copy pathmanifest.json
File metadata and controls
83 lines (83 loc) · 2.17 KB
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
{
"name": "Drupal",
"id": "drupal",
"packaging_format": 1,
"description": {
"en": "Content management framework",
"fr": "Système de gestion de contenu"
},
"version": "9.5.8~ynh1",
"url": "https://www.drupal.org",
"upstream": {
"license": "GPL-2.0-or-later",
"website": "https://www.drupal.org",
"admindoc": "https://www.drupal.org/docs/8",
"code": "https://github.com/drupal/drupal"
},
"license": "GPL-2.0-or-later",
"maintainer": {
"name": "yalh76"
},
"requirements": {
"yunohost": ">= 11.0.0"
},
"multi_instance": true,
"services": [
"nginx",
"php8.0-fpm",
"mysql"
],
"arguments": {
"install": [
{
"name": "domain",
"type": "domain"
},
{
"name": "path",
"type": "path",
"example": "/drupal",
"default": "/drupal"
},
{
"name": "is_public",
"type": "boolean",
"default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": [
"fr",
"en"
],
"default": "en"
},
{
"name": "admin",
"type": "user"
},
{
"name": "password",
"type": "password"
},
{
"name": "install_profil",
"type": "string",
"ask": {
"en": "Choose the Drupal install profile to use",
"fr": "Choisissez le profile d'installation de Drupal"
},
"choices": [
"minimal",
"standard"
],
"default": "standard"
}
]
}
}