From 1bf177f81a8444b158e3754aa094954ec0016f4d Mon Sep 17 00:00:00 2001 From: Clementine Urquizar Date: Wed, 18 Dec 2019 10:09:03 +0100 Subject: [PATCH] Update REAME with the Web Interface introduction Co-Authored-By: cvermand <33010418+bidoubiwa@users.noreply.github.com> --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 45122a01b..1d70b41b3 100644 --- a/README.md +++ b/README.md @@ -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).