mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-10 23:18:55 +01:00
Update readme.md; Deploy part
This commit is contained in:
parent
fc8182d7d3
commit
4466097d44
25
README.md
25
README.md
@ -27,18 +27,27 @@ For more [details about those features, go to our documentation](https://docs.me
|
||||
|
||||
### Deploy the Server
|
||||
|
||||
#### Run it using Docker
|
||||
|
||||
```bash
|
||||
docker run -it -p 7700:7700 --rm getmeili/MeiliSearch
|
||||
```
|
||||
|
||||
#### Download the binary
|
||||
|
||||
```bash
|
||||
curl -L https://install.meilisearch.com | sh
|
||||
./meilisearch
|
||||
```
|
||||
|
||||
#### Compile and run it from sources
|
||||
|
||||
If you have the Rust toolchain already installed, you can compile from the source
|
||||
|
||||
```bash
|
||||
# If you have the Rust toolchain already installed, you can compile from the source
|
||||
git clone https://github.com/meilisearch/MeiliSearch.git
|
||||
cd MeiliSearch
|
||||
cargo run --release
|
||||
|
||||
# You can also use Docker
|
||||
docker run -it -p 7700:7700 --rm getmeili/MeiliSearch
|
||||
|
||||
# You can also download the binary
|
||||
curl -L https://install.meilisearch.com | sh
|
||||
./meilisearch
|
||||
```
|
||||
|
||||
### Create an Index and Upload Some Documents
|
||||
|
Loading…
Reference in New Issue
Block a user