-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
74 lines (74 loc) · 1.62 KB
/
config.json
File metadata and controls
74 lines (74 loc) · 1.62 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
{
"project_name": "$projectname",
"server":{
"host": "localhost",
"port": 8080
},
"database": {
"name": "lvdb_$projectname",
"user": "user_$projectname",
"password": "pass",
"host": "127.0.0.1",
"docker": true,
"port": 3306,
"prefix": "lv_"
},
"wordpress": {
"url": "localhost",
"title": "$projectname",
"debug": true,
"install" : {
"user": "user_$projectname",
"password": "pass",
"email": "g@lv1.fr",
"blog_public": 0,
"lang": "fr_FR"
},
"theme": {
"name": "theme_$projectname",
"author": "author_$projectname",
"author_url": "lv1.fr (sans http)",
"description": "Theme par lv1"
},
"plugins": ["wordpress-seo", "contact-form-7", "advanced-custom-fields"],
"pages": [
{
"title": "Accueil",
"templatePhp": "front-page.php",
"frontPage": true,
"acf_fields": [
{
"type": "text",
"label":"Titre",
"instructions": "SVP Veuillez remplir le titre"
},
{
"type": "wysywig",
"label":"Contenu",
"instructions": "SVP Veuillez remplir le titre"
}
]
},
{
"title": "Contact",
"templatePhp": "page.php",
"acf_fields": [
{
"type": "text",
"label":"$page_name",
"instructions": "SVP Veuillez remplir la description"
}
]
},
{
"title": "A propos"
},
{
"title": "Services"
},
{
"title": "Portfolio"
}
]
}
}