-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathenv.php.dist
33 lines (28 loc) · 903 Bytes
/
env.php.dist
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
<?php
// Do not modify this file. Instead, copy it to env.php and modify that one.
return [
// App.
'APP_DEBUG' => true, // set to false in production.
'APP_ROUTER_CACHE_FILE' => BASE_PATH . '/cache/routes/routes.cache',
'APP_ROUTER_CACHE_FILE' => false, // comment this in production.
'APP_ENV' => 'dev', // set to 'prod' in production
'APP_KEY' => '',
'APP_URL' => 'http://localhost',
'APP_BASE_URL' => 'http://localhost',
// Database.
'DB_DRIVER' => 'mysql',
'DB_HOST' => 'localhost',
'DB_PORT' => 3306,
'DB_DATABASE' => 'homestead',
'DB_USERNAME' => 'homestead',
'DB_PASSWORD' => 'secret',
'DB_CHARSET' => 'utf8',
'DB_COLLATION' => 'utf8_unicode_ci',
'DB_PREFIX' => '',
// Cache.
'REDIS_HOST' => '127.0.0.1',
'REDIS_PASSWORD' => null,
'REDIS_PORT' => 6379,
// Timezone.
'TIMEZONE' => 'UTC',
];