diff --git a/app/config/local/database.php b/app/config/local/database.php index 5c68b56b..fbcb95ae 100644 --- a/app/config/local/database.php +++ b/app/config/local/database.php @@ -25,7 +25,7 @@ 'host' => 'localhost', 'database' => 'homestead', 'username' => 'homestead', - 'password' => '', + 'password' => 'secret', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', @@ -36,7 +36,7 @@ 'host' => 'localhost', 'database' => 'homestead', 'username' => 'homestead', - 'password' => '', + 'password' => 'secret', 'charset' => 'utf8', 'prefix' => '', 'schema' => 'public', diff --git a/bootstrap/start.php b/bootstrap/start.php index a55def12..84559be3 100644 --- a/bootstrap/start.php +++ b/bootstrap/start.php @@ -26,7 +26,7 @@ $env = $app->detectEnvironment(array( - 'local' => array('your-machine-name'), + 'local' => array('homestead'), ));