-
Notifications
You must be signed in to change notification settings - Fork 77
/
env.json.example
70 lines (70 loc) · 1.33 KB
/
env.json.example
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
{
"Asset": {
"Folder": "asset"
},
"Email": {
"Username": "",
"Password": "",
"Hostname": "",
"Port": 25,
"From": ""
},
"Form": {
"FileStorageFolder": "filestorage"
},
"Generation": {
"TemplateFolder": "generate"
},
"MySQL": {
"Username": "root",
"Password": "",
"Database": "blueprint",
"Charset": "utf8mb4",
"Collation": "utf8mb4_unicode_ci",
"Hostname": "127.0.0.1",
"Port": 3306,
"Parameter": "parseTime=true",
"Migration": {
"Folder": "migration/mysql",
"Table": "migration_blueprint",
"Extension": "sql"
}
},
"Server": {
"Hostname": "",
"UseHTTP": true,
"UseHTTPS": false,
"RedirectToHTTPS": false,
"HTTPPort": 80,
"HTTPSPort": 443,
"CertFile": "tls/server.crt",
"KeyFile": "tls/server.key"
},
"Session": {
"AuthKey": "PzCh6FNAB7/jhmlUQ0+25sjJ+WgcJeKR2bAOtnh9UnfVN+WJSBvY/YC80Rs+rbMtwfmSP4FUSxKPtpYKzKFqFA==",
"EncryptKey": "3oTKCcKjDHMUlV+qur2Ve664SPpSuviyGQ/UqnroUD8=",
"CSRFKey": "xULAGF5FcWvqHsXaovNFJYfgCt6pedRPROqNvsZjU18=",
"Name": "sess",
"Options": {
"Path": "/",
"Domain": "",
"MaxAge": 28800,
"Secure": false,
"HttpOnly": true
}
},
"Template": {
"Root": "base",
"Children": [
"partial/favicon",
"partial/menu",
"partial/footer"
]
},
"View": {
"BaseURI": "/",
"Extension": "tmpl",
"Folder": "view",
"Caching": true
}
}