I'm trying to get environment detection to work, so that I can use the .env.local.php file and all the other goodies, but somehow I cannot get it to detect the right environment.
I have added bootstrap/environment.php
<?php
$env = $app->detectEnvironment(array(
'local' => array('mylocalmachinename')
));
But when I php artisan env, I always get production instead of local.
Anyone know what the problem is?
Environment detection has changed in Laravel5.
You now put a
.env
file in the project rootThen on another computer - you might do
You can then add additional environmental items - i.e.