Skip to content

Commit ee13f17

Browse files
bors[bot]curquiza
andauthored
Merge #348
348: Update examples to download and run MeiliSearch r=curquiza a=curquiza Related to meilisearch/integration-guides#145 Co-authored-by: Clémentine Urquizar <[email protected]>
2 parents 8ca4619 + 0509333 commit ee13f17

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Each PR should pass the tests, mypy type checking, and the linter to be accepted
4949

5050
```bash
5151
# Tests
52-
docker pull getmeili/meilisearch:latest # Fetch the latest version of MeiliSearch image from Docker Hub
53-
docker run -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey --no-analytics=true
52+
curl -L https://install.meilisearch.com | sh # download MeiliSearch
53+
./meilisearch --master-key=masterKey --no-analytics=true # run MeiliSearch
5454
pipenv run pytest meilisearch
5555
# MyPy
5656
pipenv run mypy meilisearch

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,17 @@ pip3 install meilisearch
5353

5454
There are many easy ways to [download and run a MeiliSearch instance](https://docs.meilisearch.com/reference/features/installation.html#download-and-launch).
5555

56-
For example, if you use Docker:
56+
For example, using the `curl` command in [your Terminal](https://itconnect.uw.edu/learn/workshops/online-tutorials/web-publishing/what-is-a-terminal/):
5757

5858
```bash
59-
docker pull getmeili/meilisearch:latest # Fetch the latest version of MeiliSearch image from Docker Hub
60-
docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey
59+
# Install MeiliSearch
60+
curl -L https://install.meilisearch.com | sh
61+
62+
# Launch MeiliSearch
63+
./meilisearch --master-key=masterKey
6164
```
6265

63-
NB: you can also download MeiliSearch from **Homebrew** or **APT**.
66+
NB: you can also download MeiliSearch from **Homebrew** or **APT** or even run it using **Docker**.
6467

6568
## 🚀 Getting Started
6669

0 commit comments

Comments
 (0)