-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.php
26 lines (23 loc) · 854 Bytes
/
env.php
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
<?php
// This file is required because the core config class
// uses it to load your params and environments variables
// The entries defined by default here is required
// You can add any entry you want in the ["params"] section
//Warning: This file may normally be ignored by git (listed in .gitignore file) but to allow you to edit it, it's left here, so in real project don't forget to remove it
// This is loaded dev environment
return [
"env" => "prod",
"enableLog" => true,
"baseurl" => "http://localhost:9000",
"params" => [
"maintenance" => true,
"maintenance_msg" => "We are now working on the site. Please see you later"
],
"database" => [
"host" => "localhost",
"user" => "root",
"password" => "",
"driver" => "mysql",
"database" => "php_from_zero",
]
];