Skip to content

Commit 52239b1

Browse files
bors[bot]meili-bot
andauthored
Merge #63
63: 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 3b5757f + abddfcf commit 52239b1

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

CONTRIBUTING.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ First of all, thank you for contributing to MeiliSearch! The goal of this docume
3737
Install the dependencies:
3838

3939
```sh
40-
$ composer install
40+
composer install
4141
```
4242

4343
#### Tests and Linter
@@ -46,12 +46,12 @@ Each Pull Request should pass the tests, and the linter to be accepted.
4646

4747
```sh
4848
# Tests
49-
$ docker run -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey --no-analytics
50-
$ composer test:unit
49+
docker run -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey --no-analytics
50+
composer test:unit
5151
# Linter
52-
$ composer lint:check
52+
composer lint:check
5353
# Linter (with auto-fix)
54-
$ composer lint:fix
54+
composer lint:fix
5555
```
5656

5757
### Using the Docker Environment
@@ -63,7 +63,7 @@ These commands do not work on MacOS, see [this issue](https://github.com/meilise
6363
To start and build your Docker environment, just execute the next command in a terminal:
6464

6565
```sh
66-
$ docker-compose up -d
66+
docker-compose up -d
6767
```
6868

6969
Be sure no other MeiliSearch instance is currently running on your machine.
@@ -74,11 +74,11 @@ Each Pull Request should pass the tests, and the linter to be accepted.
7474

7575
```sh
7676
# Tests
77-
$ docker-compose exec -e MEILISEARCH_URL=http://meilisearch:7700 php composer test:unit
77+
docker-compose exec -e MEILISEARCH_URL=http://meilisearch:7700 php composer test:unit
7878
# Linter
79-
$ docker-compose exec php composer lint:check
79+
docker-compose exec php composer lint:check
8080
# Linter (with auto-fix)
81-
$ docker-compose exec php composer lint:fix
81+
docker-compose exec php composer lint:fix
8282
```
8383

8484
## Git Guidelines

0 commit comments

Comments
 (0)