python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / search / meilisearch.md
blob98e7c542cb9afa5410d103c0b4816f7db6bf738d
1 # Meilisearch {#module-services-meilisearch}
3 Meilisearch is a lightweight, fast and powerful search engine. Think elastic search with a much smaller footprint.
5 ## Quickstart
7 the minimum to start meilisearch is
9 ```nix
10 services.meilisearch.enable = true;
11 ```
13 this will start the http server included with meilisearch on port 7700.
15 test with `curl -X GET 'http://localhost:7700/health'`
17 ## Usage
19 you first need to add documents to an index before you can search for documents.
21 ### Add a documents to the `movies` index
23 `curl -X POST 'http://127.0.0.1:7700/indexes/movies/documents' --data '[{"id": "123", "title": "Superman"}, {"id": 234, "title": "Batman"}]'`
25 ### Search documents in the `movies` index
27 `curl 'http://127.0.0.1:7700/indexes/movies/search' --data '{ "q": "botman" }'` (note the typo is intentional and there to demonstrate the typo tolerant capabilities)
29 ## Defaults
31 - The default nixos package doesn't come with the [dashboard](https://docs.meilisearch.com/learn/getting_started/quick_start.html#search), since the dashboard features makes some assets downloads at compile time.
33 - Anonimized Analytics sent to meilisearch are disabled by default.
35 - Default deployment is development mode. It doesn't require a secret master key. All routes are not protected and accessible.
37 ## Missing
39 - the snapshot feature is not yet configurable from the module, it's just a matter of adding the relevant environment variables.