Local dev setup. Let's use sqlite too.
This commit is contained in:
@@ -1,47 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
return array(
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Database Connections
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here are each of the database connections setup for your application.
|
|
||||||
| Of course, examples of configuring each database platform that is
|
|
||||||
| supported by Laravel is shown below to make development simple.
|
|
||||||
|
|
|
||||||
|
|
|
||||||
| All database work in Laravel is done through the PHP PDO facilities
|
|
||||||
| so make sure you have the driver for your particular database of
|
|
||||||
| choice installed on your machine before you begin development.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'connections' => array(
|
|
||||||
|
|
||||||
'mysql' => array(
|
|
||||||
'driver' => 'mysql',
|
|
||||||
'host' => 'localhost',
|
|
||||||
'database' => 'homestead',
|
|
||||||
'username' => 'homestead',
|
|
||||||
'password' => 'secret',
|
|
||||||
'charset' => 'utf8',
|
|
||||||
'collation' => 'utf8_unicode_ci',
|
|
||||||
'prefix' => '',
|
|
||||||
),
|
|
||||||
|
|
||||||
'pgsql' => array(
|
|
||||||
'driver' => 'pgsql',
|
|
||||||
'host' => 'localhost',
|
|
||||||
'database' => 'homestead',
|
|
||||||
'username' => 'homestead',
|
|
||||||
'password' => 'secret',
|
|
||||||
'charset' => 'utf8',
|
|
||||||
'prefix' => '',
|
|
||||||
'schema' => 'public',
|
|
||||||
),
|
|
||||||
|
|
||||||
),
|
|
||||||
|
|
||||||
);
|
|
||||||
0
app/storage/.gitignore
vendored
Normal file → Executable file
0
app/storage/.gitignore
vendored
Normal file → Executable file
0
app/storage/cache/.gitignore
vendored
Normal file → Executable file
0
app/storage/cache/.gitignore
vendored
Normal file → Executable file
0
app/storage/logs/.gitignore
vendored
Normal file → Executable file
0
app/storage/logs/.gitignore
vendored
Normal file → Executable file
0
app/storage/meta/.gitignore
vendored
Normal file → Executable file
0
app/storage/meta/.gitignore
vendored
Normal file → Executable file
0
app/storage/sessions/.gitignore
vendored
Normal file → Executable file
0
app/storage/sessions/.gitignore
vendored
Normal file → Executable file
0
app/storage/views/.gitignore
vendored
Normal file → Executable file
0
app/storage/views/.gitignore
vendored
Normal file → Executable file
@@ -26,7 +26,7 @@ $app = new Illuminate\Foundation\Application;
|
|||||||
|
|
||||||
$env = $app->detectEnvironment(array(
|
$env = $app->detectEnvironment(array(
|
||||||
|
|
||||||
'local' => array('homestead'),
|
'local' => array('homestead', '*.local', '*.config', 'jbrooksuk'),
|
||||||
|
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user