From 7a5f165c4dd2778d9009ba25ccdb2e5c65ac3e45 Mon Sep 17 00:00:00 2001 From: May Meow Date: Sun, 26 Nov 2023 11:50:08 +0100 Subject: [PATCH] fix config --- config/app.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/app.php b/config/app.php index 24ca40e..a32c8cd 100644 --- a/config/app.php +++ b/config/app.php @@ -359,7 +359,7 @@ 'path' => LOGS, 'file' => 'debug', 'url' => env('LOG_DEBUG_URL', null), - 'scopes' => false, + 'scopes' => null, 'levels' => ['notice', 'info', 'debug'], ], 'error' => [ @@ -367,7 +367,7 @@ 'path' => LOGS, 'file' => 'error', 'url' => env('LOG_ERROR_URL', null), - 'scopes' => false, + 'scopes' => null, 'levels' => ['warning', 'error', 'critical', 'alert', 'emergency'], ], // To enable this dedicated query log, you need set your datasource's log flag to true @@ -427,5 +427,6 @@ 'name' => env('APP_NAME', 'MeowBlog'), 'description' => env('APP_DESCRIPTION', ''), 'theme' => env('APP_THEME', ColorScheme::Blue->value), + 'openai_api_key' => env('OPENAI_API_KEY', ''), ] ];