Skip to content

Commit a3b38b8

Browse files
bors[bot]meili-bot
andauthored
Merge #104
104: Remove dollars from bash command examples r=bidoubiwa 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 de61bb1 + 0699b96 commit a3b38b8

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,18 @@ Set both environment variables `MEILISEARCH_HOST_URL` and `MEILISEARCH_API_KEY`.
3535
Then, run:
3636

3737
```bash
38-
$ pipenv install
39-
$ pipenv run ./docs_scraper <path-to-your-config-file>
38+
pipenv install
39+
pipenv run ./docs_scraper <path-to-your-config-file>
4040
```
4141

4242
### Linter and Tests <!-- omit in TOC -->
4343

4444
```bash
45-
$ pipenv install --dev
45+
pipenv install --dev
4646
# Linter
47-
$ pipenv run pylint scraper
47+
pipenv run pylint scraper
4848
# Tests
49-
$ pipenv run pytest ./scraper/src -k "not _browser"
49+
pipenv run pytest ./scraper/src -k "not _browser"
5050
```
5151

5252
## Git Guidelines

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ Your documentation content needs to be scraped and pushed into a MeiliSearch ins
7070
You can install and run MeiliSearch on your machine using `curl`.
7171

7272
```bash
73-
$ curl -L https://install.meilisearch.com | sh
74-
$ ./meilisearch --master-key=myMasterKey
73+
curl -L https://install.meilisearch.com | sh
74+
./meilisearch --master-key=myMasterKey
7575
```
7676

7777
There are [other ways to install MeiliSearch](https://docs.meilisearch.com/learn/tutorials/getting_started.html#download-and-launch).
@@ -142,16 +142,16 @@ Following on from the example in the [first step](#run-your-meilisearch-instance
142142

143143
Then, run:
144144
```bash
145-
$ pipenv install
146-
$ pipenv run ./docs_scraper <path-to-your-config-file>
145+
pipenv install
146+
pipenv run ./docs_scraper <path-to-your-config-file>
147147
```
148148

149149
`<path-to-your-config-file>` should be the path of your configuration file defined at the [previous step](#set-your-config-file).
150150

151151
#### With Docker <!-- omit in TOC -->
152152

153153
```bash
154-
$ docker run -t --rm \
154+
docker run -t --rm \
155155
-e MEILISEARCH_HOST_URL=<your-meilisearch-host-url> \
156156
-e MEILISEARCH_API_KEY=<your-meilisearch-api-key> \
157157
-v <absolute-path-to-your-config-file>:/docs-scraper/config.json \

0 commit comments

Comments
 (0)