Skip to content

Commit e5545fe

Browse files
bors[bot]sanders41
andauthored
Merge #234
234: Remove dollar signs from code examples r=bidoubiwa a=sanders41 Relates to meilisearch/integration-guides#99 Relates to meilisearch/integration-guides#103 Co-authored-by: Paul Sanders <[email protected]>
2 parents e7dc3d0 + bddbd67 commit e5545fe

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.code-samples.meilisearch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ search_guide_2: |-
286286
})
287287
getting_started_add_documents_md: |-
288288
```bash
289-
$ pip3 install meilisearch
289+
pip3 install meilisearch
290290
```
291291
292292
```python

CONTRIBUTING.md

Lines changed: 8 additions & 8 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-
$ pipenv install --dev
32+
pipenv install --dev
3333
```
3434

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

3939
```bash
4040
# Tests
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-
$ pipenv run pytest meilisearch
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+
pipenv run pytest meilisearch
4444
# Linter
45-
$ pipenv run pylint meilisearch
45+
pipenv run pylint meilisearch
4646
```
4747

4848
Optionally tox can be used to run test on all supported version of Python and linting.
4949

5050
```bash
51-
$ docker pull getmeili/meilisearch:latest # Fetch the latest version of MeiliSearch image from Docker Hub
52-
$ docker run -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey --no-analytics=true
53-
$ pipenv run tox
51+
docker pull getmeili/meilisearch:latest # Fetch the latest version of MeiliSearch image from Docker Hub
52+
docker run -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey --no-analytics=true
53+
pipenv run tox
5454
```
5555

5656
### Want to debug? <!-- omit in toc -->

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ See our [Documentation](https://docs.meilisearch.com/learn/tutorials/getting_sta
4646
With `pip3` in command line:
4747

4848
```bash
49-
$ pip3 install meilisearch
49+
pip3 install meilisearch
5050
```
5151

5252
### Run MeiliSearch <!-- omit in toc -->
@@ -56,8 +56,8 @@ There are many easy ways to [download and run a MeiliSearch instance](https://do
5656
For example, if you use Docker:
5757

5858
```bash
59-
$ docker pull getmeili/meilisearch:latest # Fetch the latest version of MeiliSearch image from Docker Hub
60-
$ docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey
59+
docker pull getmeili/meilisearch:latest # Fetch the latest version of MeiliSearch image from Docker Hub
60+
docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey
6161
```
6262

6363
NB: you can also download MeiliSearch from **Homebrew** or **APT**.

0 commit comments

Comments
 (0)