Skip to content

Commit 77bf481

Browse files
committed
Revert changes
1 parent 8dd1db5 commit 77bf481

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

README.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
## Table of Contents <!-- omit in TOC -->
3636

3737
- [📖 Documentation](#-documentation)
38+
- [⚡ Supercharge your Meilisearch experience](#-supercharge-your-meilisearch-experience)
3839
- [🔧 Installation](#-installation)
3940
- [🚀 Getting started](#-getting-started)
4041
- [🌐 Running in the Browser with WASM](#-running-in-the-browser-with-wasm)
@@ -47,6 +48,10 @@ This readme contains all the documentation you need to start using this Meilisea
4748

4849
For general information on how to use Meilisearch—such as our API reference, tutorials, guides, and in-depth articles—refer to our [main documentation website](https://www.meilisearch.com/docs).
4950

51+
## ⚡ Supercharge your Meilisearch experience
52+
53+
Say goodbye to server deployment and manual updates with [Meilisearch Cloud](https://www.meilisearch.com/cloud?utm_campaign=oss&utm_source=github&utm_medium=meilisearch-rust). Get started with a 14-day free trial! No credit card required.
54+
5055
## 🔧 Installation
5156

5257
To use `meilisearch-sdk`, add this to your `Cargo.toml`:
@@ -68,11 +73,23 @@ You can enable the `sync` feature to make most structs `Sync`. It may be a bit s
6873

6974
Using this crate is possible without [serde](https://crates.io/crates/serde), but a lot of features require serde.
7075

71-
### Run Meilisearch <!-- omit in toc -->
76+
### Run a Meilisearch Instance <!-- omit in TOC -->
77+
78+
This crate requires a Meilisearch server to run.
79+
80+
There are many easy ways to [download and run a Meilisearch instance](https://www.meilisearch.com/docs/learn/getting_started/installation).
7281

73-
⚡️ **Launch, scale, and streamline in minutes with Meilisearch Cloud**—no maintenance, no commitment, cancel anytime. [Try it free now](https://cloud.meilisearch.com/login?utm_campaign=oss&utm_source=github&utm_medium=meilisearch-rust).
82+
For example,using the `curl` command in [your Terminal](https://itconnect.uw.edu/learn/workshops/online-tutorials/web-publishing/what-is-a-terminal/):
83+
84+
```bash
85+
# Install Meilisearch
86+
curl -L https://install.meilisearch.com | sh
87+
88+
# Launch Meilisearch
89+
./meilisearch --master-key=masterKey
90+
```
7491

75-
🪨 Prefer to self-host? [Download and deploy](https://www.meilisearch.com/docs/learn/self_hosted/getting_started_with_self_hosted_meilisearch?utm_campaign=oss&utm_source=github&utm_medium=meilisearch-rust) our fast, open-source search engine on your own infrastructure.
92+
NB: you can also download Meilisearch from **Homebrew** or **APT**.
7693

7794
## 🚀 Getting started
7895

0 commit comments

Comments
 (0)