Well, you should have a file named .env.example just copy its content to a .env file.
Oct 23, 2015
8
Level 1
Laravel, WAMP installation, .env file is missing
Laravel, WAMP installation, .env file is missing.
there is no .env file, thus , for instance, database connection is not working, unless you remove environmental variables:
'mysql' => [
'driver' => 'mysql',
/* 'host' => env('DB_HOST', 'localhost'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''), */
'host' => 'localhost',
'database' => 'forge',
'username' => 'root',
'password' => 'gintare',
I am wondering, where i should search for this file in Laravel WAMP installation.?
Please or to participate in this conversation.