Update REAME with the Web Interface introduction

Co-Authored-By: cvermand <33010418+bidoubiwa@users.noreply.github.com>
This commit is contained in:
Clementine Urquizar 2019-12-18 10:09:03 +01:00
parent df7dc54409
commit 1bf177f81a
1 changed files with 8 additions and 0 deletions

View File

@ -88,6 +88,8 @@ curl -i -X POST 'http://127.0.0.1:7700/indexes/movies/documents' \
### Search for Documents
#### In command line
The search engine is now aware of our documents and can serve those via our HTTP server again.
The [`jq` command-line tool](https://stedolan.github.io/jq/) can significantly help you read the server responses.
@ -120,6 +122,12 @@ curl 'http://127.0.0.1:7700/indexes/movies/search?q=botman+robin&limit=2' | jq
}
```
#### With the Web Interface
MeiliSearch provides a simple web interface containing a search bar in order to quickly test the instant search experience with a given set of documents.
This web interface is available in your browser at the root of the server. The default URL is [http://127.0.0.1:7700](http://127.0.0.1:7700).
### Documentation
Now, that you have a running MeiliSearch, you can learn more and tune your search engine using [the documentation](https://docs.meilisearch.com).