meilisearch
Installation
SKILL.md
Meilisearch
Overview
Meilisearch is a fast, open-source search engine designed for instant, typo-tolerant search experiences. Unlike Elasticsearch, it requires zero configuration to get started — add documents, start searching. This skill covers deployment, document indexing, search queries, faceted filtering, sorting, relevancy tuning, multi-tenancy with tenant tokens, and integration with frontend (InstantSearch) and backend (Node.js, Python) applications.
Instructions
Step 1: Installation and Deployment
# Docker (recommended for production)
docker run -d --name meilisearch \
-p 7700:7700 \
-v meili_data:/meili_data \
-e MEILI_MASTER_KEY="your-master-key-min-16-chars" \
getmeili/meilisearch:latest
# Binary install (Linux)
Related skills