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
@@ -41,15 +41,15 @@ Instead of adding the plugin to an existing project, you can try it out using th
41
41
42
42
```bash
43
43
# with yarn
44
-
$ yarn develop
44
+
yarn develop
45
45
```
46
46
47
47
Or if you want to use `npm`, by going inside the directory:
48
48
```bash
49
49
# with npm
50
-
$ cd playground
51
-
$ npm install
52
-
$ npm run develop
50
+
cd playground
51
+
npm install
52
+
npm run develop
53
53
```
54
54
55
55
Install Strapi with this **Quickstart** command to create a Strapi project instantly:
@@ -61,10 +61,10 @@ Install Strapi with this **Quickstart** command to create a Strapi project insta
61
61
62
62
```bash
63
63
# with yarn
64
-
$ yarn create strapi-app my-project --quickstart
64
+
yarn create strapi-app my-project --quickstart
65
65
66
66
# with npm/npx
67
-
$ npx create-strapi-app my-project --quickstart
67
+
npx create-strapi-app my-project --quickstart
68
68
```
69
69
70
70
_This command generates a brand new project with the default features (authentication, permissions, content management, content type builder & file upload). The **Quickstart** command installs Strapi using a **SQLite** database which is used for prototyping in development._
@@ -75,18 +75,18 @@ Once your Strapi project has been created, to link the plugin to this project yo
75
75
1. Create plugin folder
76
76
77
77
```bash
78
-
$ mkdir plugins
78
+
mkdir plugins
79
79
```
80
80
2. Create symbolic link
81
81
82
82
```bash
83
-
$ cd plugins
84
-
$ ln -s [PATH_TO_PLUGIN] meilisearch
83
+
cd plugins
84
+
ln -s [PATH_TO_PLUGIN] meilisearch
85
85
```
86
86
3. Develop
87
87
88
88
```bash
89
-
$ yarn develop
89
+
yarn develop
90
90
```
91
91
92
92
You can now use the plugin on your Strapi project.
0 commit comments