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
+7-9Lines changed: 7 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,7 @@ Add your Strapi collections into a MeiliSearch instance. The plugin listens to m
40
40
## 📖 Documentation
41
41
42
42
To understand MeiliSearch and how it works, see the [MeiliSearch's documentation](https://docs.meilisearch.com/learn/what_is_meilisearch/).
43
+
43
44
To understand Strapi and how to create an app, see [Strapi's documentation](https://strapi.io/documentation/developer-docs/latest/getting-started/introduction.html).
44
45
45
46
## 🔧 Installation
@@ -67,13 +68,14 @@ You will need both a running Strapi app and a running MeiliSearch instance. For
67
68
68
69
There are many easy ways to [download and run a MeiliSearch instance](https://docs.meilisearch.com/reference/features/installation.html#download-and-launch).
69
70
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:
71
72
72
73
```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
75
76
```
76
77
78
+
77
79
### 🏃♂️ Run Strapi
78
80
79
81
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
241
243
Instead of adding the plugin to an existing project, you can try it out using the playground in this project.
242
244
243
245
```bash
244
-
# with npm
245
-
cd playground
246
-
npm install
247
-
npm run develop
246
+
# Root of repository
247
+
yarn playground:dev
248
248
```
249
249
250
250
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
253
253
254
254
Install Strapi with this [quickstart]((https://strapi.io/documentation/developer-docs/latest/getting-started/quick-start.html)) command to create a Strapi project instantly:
255
255
256
-
#### Create strapi project
257
-
258
256
- Use **yarn** to install the Strapi project (recommended). [Install yarn with these docs](https://yarnpkg.com/lang/en/docs/install/).)
0 commit comments