Skip to content

Commit 32975ed

Browse files
committed
Resolve reamde
1 parent 4bb3455 commit 32975ed

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Add your Strapi collections into a MeiliSearch instance. The plugin listens to m
4040
## 📖 Documentation
4141

4242
To understand MeiliSearch and how it works, see the [MeiliSearch's documentation](https://docs.meilisearch.com/learn/what_is_meilisearch/).
43+
4344
To understand Strapi and how to create an app, see [Strapi's documentation](https://strapi.io/documentation/developer-docs/latest/getting-started/introduction.html).
4445

4546
## 🔧 Installation
@@ -67,13 +68,14 @@ You will need both a running Strapi app and a running MeiliSearch instance. For
6768

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

70-
Instead of adding the plugin to an existing project, you can try it out using the playground.
71+
For example, if you use Docker:
7172

7273
```bash
73-
# with yarn
74-
yarn develop
74+
docker pull getmeili/meilisearch:latest # Fetch the latest version of MeiliSearch image from Docker Hub
75+
docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey
7576
```
7677

78+
7779
### 🏃‍♂️ Run Strapi
7880

7981
If you don't have a running Strapi project yet, you can either launch the [playground present in this project](#playground) or [create a Strapi Project](#create-strapi-project).
@@ -241,10 +243,8 @@ If you don't have a running Strapi app, you can still try this plugin using eith
241243
Instead of adding the plugin to an existing project, you can try it out using the playground in this project.
242244

243245
```bash
244-
# with npm
245-
cd playground
246-
npm install
247-
npm run develop
246+
# Root of repository
247+
yarn playground:dev
248248
```
249249

250250
This command will install the required dependencies and launch the app in development mode. You should be able to reach it on the [port 8000 of your localhost](http://localhost:8000/admin/).
@@ -253,8 +253,6 @@ This command will install the required dependencies and launch the app in develo
253253

254254
Install Strapi with this [quickstart]((https://strapi.io/documentation/developer-docs/latest/getting-started/quick-start.html)) command to create a Strapi project instantly:
255255

256-
#### Create strapi project
257-
258256
- Use **yarn** to install the Strapi project (recommended). [Install yarn with these docs](https://yarnpkg.com/lang/en/docs/install/).)
259257

260258
```bash

0 commit comments

Comments
 (0)