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
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,7 @@
36
36
-[📖 Documentation](#-documentation)
37
37
-[🔧 Installation](#-installation)
38
38
-[🚀 Getting Started](#-getting-started)
39
+
-[🌐 Running in the Browser with WASM](#-running-in-the-browser-with-wasm)
39
40
-[🤖 Compatibility with MeiliSearch](#-compatibility-with-meilisearch)
40
41
-[⚙️ Development Workflow and Contributing](#️-development-workflow-and-contributing)
41
42
@@ -70,10 +71,14 @@ This crate requires a MeiliSearch server to run.
70
71
71
72
There are many easy ways to [download and run a MeiliSearch instance](https://docs.meilisearch.com/reference/features/installation.html#download-and-launch).
72
73
73
-
For example, if you use Docker:
74
+
For example,using the `curl` command in [your Terminal](https://itconnect.uw.edu/learn/workshops/online-tutorials/web-publishing/what-is-a-terminal/):
75
+
74
76
```bash
75
-
docker pull getmeili/meilisearch:latest # Fetch the latest version of MeiliSearch image from Docker Hub
76
-
docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey
77
+
# Install MeiliSearch
78
+
curl -L https://install.meilisearch.com | sh
79
+
80
+
# Launch MeiliSearch
81
+
./meilisearch --master-key=masterKey
77
82
```
78
83
79
84
NB: you can also download MeiliSearch from **Homebrew** or **APT**.
@@ -173,7 +178,7 @@ println!("{:?}", movies.search().with_query("wonder").with_filter("id > 1 AND ge
173
178
}
174
179
```
175
180
176
-
###🌐 Running in the Browser with WASM <!-- omit in TOC -->
181
+
## 🌐 Running in the Browser with WASM <!-- omit in TOC -->
177
182
178
183
This crate fully supports WASM.
179
184
@@ -196,3 +201,4 @@ If you want to know more about the development workflow or want to contribute, p
196
201
<hr>
197
202
198
203
**MeiliSearch** provides and maintains many **SDKs and Integration tools** like this one. We want to provide everyone with an **amazing search experience for any kind of project**. If you want to contribute, make suggestions, or just know what's going on right now, visit us in the [integration-guides](https://github.com/meilisearch/integration-guides) repository.
Copy file name to clipboardExpand all lines: src/lib.rs
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -25,17 +25,21 @@
25
25
//!
26
26
//! There are many easy ways to [download and run a MeiliSearch instance](https://docs.meilisearch.com/reference/features/installation.html#download-and-launch).
27
27
//!
28
-
//! For example, if you use Docker:
28
+
//! For example,using the `curl` command in [your Terminal](https://itconnect.uw.edu/learn/workshops/online-tutorials/web-publishing/what-is-a-terminal/):
29
+
//!
29
30
//! ```bash
30
-
//! docker pull getmeili/meilisearch:latest # Fetch the latest version of MeiliSearch image from Docker Hub
31
-
//! docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey
31
+
//! # Install MeiliSearch
32
+
//! curl -L https://install.meilisearch.com | sh
33
+
//!
34
+
//! # Launch MeiliSearch
35
+
//! ./meilisearch --master-key=masterKey
32
36
//! ```
33
37
//!
34
38
//! NB: you can also download MeiliSearch from **Homebrew** or **APT**.
35
39
//!
36
40
//! # 🚀 Getting Started
37
41
//!
38
-
//! ```
42
+
//! ```rust
39
43
//! use meilisearch_sdk::{document::*, client::*, search::*};
0 commit comments