Skip to content

Commit

Permalink
Update Algolia config to replace ALGOLIA_SECRET with ALGOLIA_API_KEY
Browse files Browse the repository at this point in the history
Official Algolia docs give us this;
ALGOLIA_APP_ID=
ALGOLIA_API_KEY=

But the Laravel Scout has different fields for this.
  • Loading branch information
yehuuu6 authored Jan 25, 2025
1 parent f818046 commit a5041f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/scout.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@

'algolia' => [
'id' => env('ALGOLIA_APP_ID', ''),
'secret' => env('ALGOLIA_SECRET', ''),
'secret' => env('ALGOLIA_API_KEY', ''),
'index-settings' => [
// 'users' => [
// 'searchableAttributes' => ['id', 'name', 'email'],
Expand Down

0 comments on commit a5041f7

Please sign in to comment.