Commit 959def5a authored by Nicolas Widart's avatar Nicolas Widart

Renaming developement environment to local

parent 57838ec1
APP_ENV=local
APP_KEY=SomeRandomString
DB_USERNAME=homestead
DB_PASSWORD=homestead
\ No newline at end of file
......@@ -23,25 +23,14 @@ return [
'mysql' => [
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'emulsion-platform',
'username' => 'root',
'password' => 'root',
'database' => getenv('DB_NAME'),
'username' => getenv('DB_USERNAME'),
'password' => getenv('DB_PASSWORD'),
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
],
'pgsql' => [
'driver' => 'pgsql',
'host' => 'localhost',
'database' => 'homestead',
'username' => 'homestead',
'password' => 'secret',
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
],
],
];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment