From 8cc3dd6608b4ced4a0ce32e3d65b0bb3ffa5945a Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Wed, 6 Dec 2017 11:37:59 -0600 Subject: [PATCH] cleanup env templates --- .env.dev.example | 8 ++------ config/database.php | 4 +--- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.env.dev.example b/.env.dev.example index 3637656e..3148cef5 100644 --- a/.env.dev.example +++ b/.env.dev.example @@ -9,12 +9,8 @@ APP_LOG=daily APP_LOG_LEVEL=debug APP_LOG_MAX_FILES=7 -DB_CONNECTION=local -DB_HOST=127.0.0.1 -DB_PORT=3306 -DB_DATABASE=phpvms -DB_USERNAME= -DB_PASSWORD= +DB_CONNECTION=sqlite +DB_PATH=storage/dev.sqlite CACHE_DRIVER=array CACHE_PREFIX= diff --git a/config/database.php b/config/database.php index 04e63c70..23212118 100755 --- a/config/database.php +++ b/config/database.php @@ -57,7 +57,5 @@ return [ 'port' => env('REDIS_PORT', 6379), 'database' => 0, ], - - ], - + ] ];