You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-3Lines changed: 20 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,7 @@
35
35
## Table of Contents <!-- omit in TOC -->
36
36
37
37
-[📖 Documentation](#-documentation)
38
+
-[⚡ Supercharge your Meilisearch experience](#-supercharge-your-meilisearch-experience)
38
39
-[🔧 Installation](#-installation)
39
40
-[🚀 Getting started](#-getting-started)
40
41
-[🌐 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
47
48
48
49
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).
49
50
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
+
50
55
## 🔧 Installation
51
56
52
57
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
68
73
69
74
Using this crate is possible without [serde](https://crates.io/crates/serde), but a lot of features require serde.
70
75
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).
72
81
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
+
```
74
91
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**.
0 commit comments