.. | ||
src | ||
.gitignore | ||
Cargo.toml | ||
data_set.csv | ||
Makefile.toml | ||
README.md |
Meilisearch Searchbar
This show how to integrate meilisearch with a leptos app, including a search bar and showing the results to the user.
We'll run meilisearch locally, as opposed to using their cloud service.
To get started install meilisearch into this example's root.
curl -L https://install.meilisearch.com | sh
Run it.
./meilisearch
Then set the environment variable and serve the app. I've included the address of my own local meilisearch server. I didn't provide a password to meilisearch during my setup, and I didn't provide one in my environment variables either.
MEILISEARCH_URL=http://localhost:7700 && cargo leptos serve
Navigate to 127.0.0.1:3000 and start typing in popular American company names. (Boeing, Pepsi, etc)
Thoughts, Feedback, Criticism, Comments?
Send me any of the above, I'm @sjud on leptos discord. I'm always looking to improve and make these projects more helpful for the community. So please let me know how I can do that. Thanks!