Merge pull request #431 from curquiza/web-interface-readme

Update REAME with the Web Interface introduction
This commit is contained in:
Clément Renault 2019-12-18 13:50:12 +01:00 committed by GitHub
commit 11b684114d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,6 +88,8 @@ curl -i -X POST 'http://127.0.0.1:7700/indexes/movies/documents' \
### Search for 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 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. 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 ### Documentation
Now, that you have a running MeiliSearch, you can learn more and tune your search engine using [the documentation](https://docs.meilisearch.com). Now, that you have a running MeiliSearch, you can learn more and tune your search engine using [the documentation](https://docs.meilisearch.com).