Laravel Scout Elasticsearch Driver
, (*1)
This package makes is the Elasticsearch driver for Laravel Scout with AWS supprot., (*2)
Contents
Installation
You can install the package via composer:, (*3)
``` bash
composer require umuttaymaz/laravel-scout-aws-elastic, (*4)
You must add the Scout service provider and the package service provider in your app.php config:
```php
// config/app.php
'providers' => [
...
Laravel\Scout\ScoutServiceProvider::class,
...
ScoutEngines\Elasticsearch\ElasticsearchProvider::class,
],
Setting up Elasticsearch configuration
You must have a Elasticsearch server up and running with the index you want to use created, (*5)
If you need help with this please refer to the Elasticsearch documentation, (*6)
If you want to use AWS Elasticsearh make sure you have setup the credentials, (*7)
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=
and set, (*8)
ELASTICSERACH_DRIVER=aws
After you've published the Laravel Scout package configuration:, (*9)
// config/scout.php
// Set your driver to elasticsearch
'driver' => env('SCOUT_DRIVER', 'elasticsearch'),
...
'elasticsearch' => [
'index' => env('ELASTICSEARCH_INDEX', 'laravel'),
'hosts' => [
env('ELASTICSEARCH_HOST', 'http://localhost'),
],
],
...
Usage
Now you can use Laravel Scout as described in the official documentation, (*10)
Credits
License
The MIT License (MIT)., (*11)