Skip to content

Commit f3338ae

Browse files
bors[bot]meili-bot
andauthored
Merge #321
321: Remove dollars from bash command examples r=curquiza a=meili-bot _This PR is auto-generated._ Related to meilisearch/integration-guides#99 and meilisearch/integration-guides#103. Co-authored-by: meili-bot <[email protected]>
2 parents d72e8d4 + 092d918 commit f3338ae

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

CONTRIBUTING.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ First of all, thank you for contributing to MeiliSearch! The goal of this docume
2929
### Setup <!-- omit in TOC -->
3030

3131
```bash
32-
$ yarn --dev
32+
yarn --dev
3333
```
3434

3535
### Tests and Linter <!-- omit in TOC -->
@@ -38,41 +38,41 @@ Each PR should pass the tests and the linter to be accepted.
3838

3939
```bash
4040
# Tests with Jest
41-
$ docker pull getmeili/meilisearch:latest # Fetch the latest version of MeiliSearch image from Docker Hub
42-
$ docker run -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey --no-analytics=true
43-
$ yarn test
41+
docker pull getmeili/meilisearch:latest # Fetch the latest version of MeiliSearch image from Docker Hub
42+
docker run -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey --no-analytics=true
43+
yarn test
4444
# Tests with demos
45-
$ yarn test:demo
45+
yarn test:demo
4646
# Linter
47-
$ yarn lint
47+
yarn lint
4848
# Linter with fixing
49-
$ yarn lint:fix
49+
yarn lint:fix
5050
# Build the project
51-
$ yarn build
51+
yarn build
5252
```
5353

5454
### Playgrounds <!-- omit in TOC -->
5555

5656
To test directly your changes in `instant-meilisearch`, you can run the Vue playground:
5757

5858
```bash
59-
$ yarn playground:vue
59+
yarn playground:vue
6060
```
6161

6262
Or the React playground:
6363

6464
```bash
65-
$ yarn playground:react
65+
yarn playground:react
6666
```
6767

6868
Or the JavaScript playground:
6969
```
70-
$ yarn playground:javascript
70+
yarn playground:javascript
7171
```
7272

7373
Or the HTML playground:
7474
```
75-
$ yarn playground:html
75+
yarn playground:html
7676
```
7777

7878
## Git Guidelines

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ NB: If you don't have any MeiliSearch instance running and containing your data,
4040
Use `npm` or `yarn` to install `instant-meilisearch`:
4141

4242
```bash
43-
$ npm install @meilisearch/instant-meilisearch
43+
npm install @meilisearch/instant-meilisearch
4444
```
4545

4646
```bash
47-
$ yarn add @meilisearch/instant-meilisearch
47+
yarn add @meilisearch/instant-meilisearch
4848
```
4949

5050
## Usage

0 commit comments

Comments
 (0)