#47 - Undos changes in config files.

This commit is contained in:
Abijeet 2017-06-10 19:46:00 +05:30
parent 4efe3b41da
commit 552943c033
2 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@
return [
'env' => env('APP_ENV', 'development'),
'env' => env('APP_ENV', 'production'),
'editor' => env('APP_EDITOR', 'html'),
@ -18,7 +18,7 @@ return [
|
*/
'debug' => env('APP_DEBUG', true),
'debug' => env('APP_DEBUG', false),
/*
|--------------------------------------------------------------------------

View File

@ -71,9 +71,9 @@ return [
'mysql' => [
'driver' => 'mysql',
'host' => env('DB_HOST', 'localhost'),
'database' => env('DB_DATABASE', 'bookstack'),
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', 'Change123'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',