set config variables for env variables

This commit is contained in:
2026-02-12 18:31:11 +01:00
parent ac1eaca0df
commit 6c3a11388b
5 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -14,10 +14,10 @@ class TypesenseService
public function __construct()
{
$this->client = new Client([
'api_key' => config('typesense_api_key'),
'api_key' => config('app.typesense_api_key'),
'nodes' => [
[
'host' => config('typesense_connection'),
'host' => config('app.typesense_connection'),
'port' => '8108',
'protocol' => 'http',
],