Re-add pulling the values from the env if not overridden #156

This commit is contained in:
Nabeel Shahzad
2018-01-29 14:48:11 -06:00
parent 9f92f45293
commit 5e6e4bdf4d
2 changed files with 20 additions and 20 deletions

View File

@@ -8,18 +8,18 @@
*/
return [
'name' => 'phpVMS',
'env' => 'dev',
'debug' => true,
'url' => 'http://localhost',
'name' => env('PHPVMS_VA_NAME', 'phpvms'),
'env' => env('APP_ENV', 'dev'),
'debug' => env('APP_DEBUG', true),
'url' => env('APP_URL', 'http://localhost'),
'version' => '7.0.0',
'locale' => 'en',
'locale' => env('APP_LOCALE', 'en'),
'fallback_locale' => 'en',
'log' => 'daily',
'log_level' => 'debug',
'log_max_files' => 7,
'log' => env('APP_LOG', 'daily'),
'log_level' => env('APP_LOG_LEVEL', 'debug'),
'log_max_files' => env('APP_LOG_MAX_FILES', 5),
# This sends install and vaCentral specific information to help with
# optimizations and figuring out where slowdowns might be happening