what is app env in laravel

Solutions on MaxInterview for what is app env in laravel by the best coders in the world

showing results for - "what is app env in laravel"
Clarisse
23 Feb 2017
1Laravel 5 uses .env file to configure your app. .env should not be committed on your repository, like github or bitbucket. On your local environment your .env will look like the following:
2
3# .env
4APP_ENV=local
5For your production server, you might have the following config:
6
7# .env
8APP_ENV=production