Skip to content

Remove dollars from bash command examples #120

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 2 commits into from
Mar 11, 2021
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ First of all, thank you for contributing to MeiliSearch! The goal of this docume
### Setup <!-- omit in TOC -->

```bash
$ yarn install
yarn install
```

### Test with the Playground <!-- omit in TOC -->

A playground of a VuePress environment is provided to test the plugin.

```bash
$ yarn serve
yarn serve
```

Then, open your browser on the indicated URL and test the search bar 🙂
Expand All @@ -48,11 +48,11 @@ Since the automatic tests are not relevant, we really recommend to use it during

```bash
# Automatic tests (need improvement)
$ yarn test
yarn test
# Linter
$ yarn lint
yarn lint
# Linter with auto-correct
$ yarn lint:fix
yarn lint:fix
```

## Git Guidelines
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ As a first introduction, you might only want to test this plugin without connect
You can do it by running the VuePress playground provided in this repository:

```bash
$ yarn install
$ yarn serve
yarn install
yarn serve
```

Then, open your browser on the indicated URL and test the search bar 🙂
Expand All @@ -69,9 +69,9 @@ Type `create an indxe` to live the MeiliSearch experience with the [typo toleran
In your VuePress project:

```bash
$ yarn add vuepress-plugin-meilisearch
yarn add vuepress-plugin-meilisearch
# or
$ npm install vuepress-plugin-meilisearch
npm install vuepress-plugin-meilisearch
```

### Basic Configuration
Expand Down