This documentation website only covers the latest stable release of Meilisearch. However, it is possible to view the documentation of previous Meilisearch versions stored in our GitHub repository. This guide shows you how to clone Meilisearch’s documentation repository, fetch the content for a specific version, and read it on your local machine.Documentation Index
Fetch the complete documentation index at: https://www.meilisearch.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
To follow this guide, you should have some familiarity with the command line. Before beginning, make sure the following tools are installed on your machine:Clone the repository
To access previous versions of the Meilisearch documentation, the first step is downloading the documentation repository into your local machine. In Git, this is referred to as cloning. Open your console and run the following command. It will create adocumentation directory in your current location containing the Meilisearch documentation site project files:
Select a Meilisearch version
The documentation repository contains tags for versions fromv0.8 up to the latest release. Use these tags together with git checkout to access a specific version.
For example, the following command retrieves the Meilisearch v0.20 documentation:
Access the documentation
There are different ways of accessing the documentation of previous Meilisearch releases depending on the version you checked out.>= v1.2: read .mdx files
Starting with v1.2, Meilisearch’s documentation content and build code live in separate repositories. Because of this, it is not possible to run a local copy of the documentation website.
To access the Meilisearch documentation for versions 1.2 and later, read the .mdx files directly, either locally with the help of a modern text editor or remotely using GitHub’s interface.
v0.17-v1.1: run a local Vuepress server
Install dependencies
This version of the Meilisearch documentation manages its dependencies with Yarn. Run the following command to install all required packages:Start the local server
After installing dependencies, use Yarn to start the server:http://localhost:8080.
v0.11-v0.16: run a simple Python server
Accessing Meilisearch documentation from v0.11 to v0.16 requires launching an HTTP server on your local machine. Run the following command on your console:http://localhost:8080.
The above example uses Python to launch a local server, but alternatives such as npx serve work equally well.