Skip to content

Remove dollars from bash command examples #63

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ First of all, thank you for contributing to MeiliSearch! The goal of this docume
Install the dependencies:

```sh
$ composer install
composer install
```

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

```sh
# Tests
$ docker run -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey --no-analytics
$ composer test:unit
docker run -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey --no-analytics
composer test:unit
# Linter
$ composer lint:check
composer lint:check
# Linter (with auto-fix)
$ composer lint:fix
composer lint:fix
```

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

```sh
$ docker-compose up -d
docker-compose up -d
```

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

```sh
# Tests
$ docker-compose exec -e MEILISEARCH_URL=http://meilisearch:7700 php composer test:unit
docker-compose exec -e MEILISEARCH_URL=http://meilisearch:7700 php composer test:unit
# Linter
$ docker-compose exec php composer lint:check
docker-compose exec php composer lint:check
# Linter (with auto-fix)
$ docker-compose exec php composer lint:fix
docker-compose exec php composer lint:fix
```

## Git Guidelines
Expand Down