Browse Source

Tweak environment file settings.

Taylor Otwell 10 years ago
parent
commit
ef855c1175
1 changed files with 4 additions and 7 deletions
  1. 4 7
      bootstrap/environment.php

+ 4 - 7
bootstrap/environment.php

@@ -11,17 +11,14 @@
 |
 */
 
-try
+if (file_exists(__DIR__.'/.env'))
 {
 	Dotenv::load(__DIR__.'/../');
 
-	Dotenv::required('APP_ENV');
-}
-catch (RuntimeException $e)
-{
-	die('Application environment not configured.'.PHP_EOL);
+	//Dotenv::required('APP_ENV');
 }
 
+
 /*
 |--------------------------------------------------------------------------
 | Detect The Application Environment
@@ -35,5 +32,5 @@ catch (RuntimeException $e)
 
 $env = $app->detectEnvironment(function()
 {
-	return getenv('APP_ENV');
+	return getenv('APP_ENV') ?: 'production';
 });