mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Fix #1382
This commit is contained in:
@@ -23,17 +23,17 @@ declare(strict_types=1);
|
||||
|
||||
|
||||
return [
|
||||
'name' => env('APP_NAME', 'Firefly III'),
|
||||
'env' => env('APP_ENV', 'production'),
|
||||
'name' => envNonEmpty('APP_NAME', 'Firefly III'),
|
||||
'env' => envNonEmpty('APP_ENV', 'production'),
|
||||
'debug' => env('APP_DEBUG', false),
|
||||
'url' => env('APP_URL', 'http://localhost'),
|
||||
'timezone' => env('TZ', 'UTC'),
|
||||
'url' => envNonEmpty('APP_URL', 'http://localhost'),
|
||||
'timezone' => envNonEmpty('TZ', 'UTC'),
|
||||
'locale' => 'en_US',
|
||||
'fallback_locale' => 'en_US',
|
||||
'key' => env('APP_KEY'),
|
||||
'cipher' => 'AES-256-CBC',
|
||||
'log' => env('APP_LOG', 'errorlog'),
|
||||
'log_level' => env('APP_LOG_LEVEL', 'info'),
|
||||
'log' => envNonEmpty('APP_LOG', 'errorlog'),
|
||||
'log_level' => envNonEmpty('APP_LOG_LEVEL', 'info'),
|
||||
'providers' => [
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user