diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-05-05 08:52:14 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-05 08:52:14 +0900 |
| commit | 5c08f2b93b4a9f5bac0718d5b202b83314f4cb7c (patch) | |
| tree | fdcb2c93859c85b3541f3571974f330f836641ec /.config | |
| parent | Update CHANGELOG.md (diff) | |
| download | sharkey-5c08f2b93b4a9f5bac0718d5b202b83314f4cb7c.tar.gz sharkey-5c08f2b93b4a9f5bac0718d5b202b83314f4cb7c.tar.bz2 sharkey-5c08f2b93b4a9f5bac0718d5b202b83314f4cb7c.zip | |
feat: Introduce Meilisearch (#10755)
* wip
* wip
* Update SearchService.ts
* Update SearchService.ts
* wip
* wip
* Update SearchService.ts
* Update CHANGELOG.md
* wip
* Update SearchService.ts
* Update docker-compose.yml.example
Diffstat (limited to '.config')
| -rw-r--r-- | .config/docker_example.yml | 14 | ||||
| -rw-r--r-- | .config/example.yml | 12 |
2 files changed, 11 insertions, 15 deletions
diff --git a/.config/docker_example.yml b/.config/docker_example.yml index af0a90dc95..6946954ce5 100644 --- a/.config/docker_example.yml +++ b/.config/docker_example.yml @@ -95,15 +95,13 @@ redis: # #prefix: example-prefix # #db: 1 -# ┌─────────────────────────────┐ -#───┘ Elasticsearch configuration └───────────────────────────── +# ┌───────────────────────────┐ +#───┘ MeiliSearch configuration └───────────────────────────── -#elasticsearch: -# host: localhost -# port: 9200 -# ssl: false -# user: -# pass: +#meilisearch: +# host: meilisearch +# port: 7700 +# apiKey: '' # ┌───────────────┐ #───┘ ID generation └─────────────────────────────────────────── diff --git a/.config/example.yml b/.config/example.yml index 8111b1992e..5861176677 100644 --- a/.config/example.yml +++ b/.config/example.yml @@ -95,15 +95,13 @@ redis: # #prefix: example-prefix # #db: 1 -# ┌─────────────────────────────┐ -#───┘ Elasticsearch configuration └───────────────────────────── +# ┌───────────────────────────┐ +#───┘ MeiliSearch configuration └───────────────────────────── -#elasticsearch: +#meilisearch: # host: localhost -# port: 9200 -# ssl: false -# user: -# pass: +# port: 7700 +# apiKey: '' # ┌───────────────┐ #───┘ ID generation └─────────────────────────────────────────── |