From 8e8c1d78ae8170afa6d20b00e63412798baf48f8 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Sun, 16 Nov 2014 22:42:03 +0000 Subject: [PATCH] Local dev setup. Let's use sqlite too. --- app/config/local/database.php | 47 --------------------------------- app/storage/.gitignore | 0 app/storage/cache/.gitignore | 0 app/storage/logs/.gitignore | 0 app/storage/meta/.gitignore | 0 app/storage/sessions/.gitignore | 0 app/storage/views/.gitignore | 0 bootstrap/start.php | 2 +- 8 files changed, 1 insertion(+), 48 deletions(-) delete mode 100644 app/config/local/database.php mode change 100644 => 100755 app/storage/.gitignore mode change 100644 => 100755 app/storage/cache/.gitignore mode change 100644 => 100755 app/storage/logs/.gitignore mode change 100644 => 100755 app/storage/meta/.gitignore mode change 100644 => 100755 app/storage/sessions/.gitignore mode change 100644 => 100755 app/storage/views/.gitignore diff --git a/app/config/local/database.php b/app/config/local/database.php deleted file mode 100644 index fbcb95ae..00000000 --- a/app/config/local/database.php +++ /dev/null @@ -1,47 +0,0 @@ - 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', - ), - - ), - -); diff --git a/app/storage/.gitignore b/app/storage/.gitignore old mode 100644 new mode 100755 diff --git a/app/storage/cache/.gitignore b/app/storage/cache/.gitignore old mode 100644 new mode 100755 diff --git a/app/storage/logs/.gitignore b/app/storage/logs/.gitignore old mode 100644 new mode 100755 diff --git a/app/storage/meta/.gitignore b/app/storage/meta/.gitignore old mode 100644 new mode 100755 diff --git a/app/storage/sessions/.gitignore b/app/storage/sessions/.gitignore old mode 100644 new mode 100755 diff --git a/app/storage/views/.gitignore b/app/storage/views/.gitignore old mode 100644 new mode 100755 diff --git a/bootstrap/start.php b/bootstrap/start.php index 84559be3..42307d88 100644 --- a/bootstrap/start.php +++ b/bootstrap/start.php @@ -26,7 +26,7 @@ $app = new Illuminate\Foundation\Application; $env = $app->detectEnvironment(array( - 'local' => array('homestead'), + 'local' => array('homestead', '*.local', '*.config', 'jbrooksuk'), ));