From 0030837626c454d71f3193f370a7619ca5a47e0f Mon Sep 17 00:00:00 2001 From: Ryan Smith <0ryansmith1994@gmail.com> Date: Wed, 22 Apr 2015 16:23:11 +0100 Subject: [PATCH] Defaults to local config. --- bootstrap/start.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/start.php b/bootstrap/start.php index c22ca651c6..cef4b638b3 100644 --- a/bootstrap/start.php +++ b/bootstrap/start.php @@ -30,7 +30,7 @@ $env = $app->detectEnvironment(function () use ($app) { // Attempts to set the environment using the hostname (env => hostname). $env = Helpers::getEnvironment([ - 'local' => ['your-machine-host-name'] + 'local' => [gethostname()] // Change this if you don't want to use the local config. ], gethostname()); if ($env) return $env;