Browse Source

Cleaning up some default values.

Taylor Otwell 10 years ago
parent
commit
6f005892b0
2 changed files with 3 additions and 3 deletions
  1. 2 2
      app/config/local/database.php
  2. 1 1
      bootstrap/start.php

+ 2 - 2
app/config/local/database.php

@@ -25,7 +25,7 @@ return array(
 			'host'      => 'localhost',
 			'database'  => 'homestead',
 			'username'  => 'homestead',
-			'password'  => '',
+			'password'  => 'secret',
 			'charset'   => 'utf8',
 			'collation' => 'utf8_unicode_ci',
 			'prefix'    => '',
@@ -36,7 +36,7 @@ return array(
 			'host'     => 'localhost',
 			'database' => 'homestead',
 			'username' => 'homestead',
-			'password' => '',
+			'password' => 'secret',
 			'charset'  => 'utf8',
 			'prefix'   => '',
 			'schema'   => 'public',

+ 1 - 1
bootstrap/start.php

@@ -26,7 +26,7 @@ $app = new Illuminate\Foundation\Application;
 
 $env = $app->detectEnvironment(array(
 
-	'local' => array('your-machine-name'),
+	'local' => array('homestead'),
 
 ));