> ## Documentation Index
> Fetch the complete documentation index at: https://jobo.world/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Meilisearch

> Sync jobs into Meilisearch for lightning-fast open-source search.

## Connection Configuration

| Field        | Type   | Required | Description                                                                     |
| ------------ | ------ | -------- | ------------------------------------------------------------------------------- |
| `host`       | string | ✅        | Full host URL including protocol and port (`https://ms-abc123.meilisearch.io`)  |
| `api_key`    | string | —        | Master key or admin key with write access. Leave empty if no auth configured.   |
| `index_name` | string | —        | Target index name (default: `jobs`). Created automatically if it doesn't exist. |

## Example Configuration

```json theme={null}
{
  "host": "https://ms-abc123.meilisearch.io",
  "api_key": "••••••••",
  "index_name": "jobs"
}
```

## Setup Requirements

1. Deploy Meilisearch (self-hosted or Meilisearch Cloud)
2. Ensure the instance is accessible over HTTPS for production
3. Use a master or admin key for write access

<Tip>
  Meilisearch is great for teams that want a fast, easy-to-setup search engine
  with excellent developer experience.
</Tip>
