Split commands

This commit is contained in:
mboivin 2020-03-26 13:13:02 +01:00 committed by GitHub
parent eea2a9cfc3
commit 0a216066f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,11 +75,16 @@ curl -L https://install.meilisearch.com | sh
#### Compile and run it from sources #### Compile and run it from sources
If you have the Rust toolchain already installed on your local system, clone the repository and change it to your working directory. In the cloned repository, compile MeiliSearch. If you have the Rust toolchain already installed on your local system, clone the repository and change it to your working directory.
```bash ```bash
git clone https://github.com/meilisearch/MeiliSearch.git git clone https://github.com/meilisearch/MeiliSearch.git
cd MeiliSearch cd MeiliSearch
```
In the cloned repository, compile MeiliSearch.
```bash
cargo run --release cargo run --release
``` ```