I just want to set up a local environment in Laravel 4.
In bootstrap/start.php , I have:
$env = $app->detectEnvironment(array( 'local' => ['laravel.dev', ''], ));
I tried changing the local development index in the array, but nothing works. I tried some tips on this page: http://laravel.com/docs/configuration ... nothing.
I use artisan in a console that always tells me:
************************************** * Application In Production! * ************************************** Do you really wish to run this command?
What can I do to teach Lara that I am in the local environment?
Godรด source share