Check out the doc
Tantivy is a text search engine library written in rust. It also comes with a command-line CLI that can help you get an up and running search engine in minutes.
```bash # my-index directory must be created beforehands mkdir my-index
# Tantivy new will trigger a wizard, to define the schema
# of your index.
tantivy new -i ./my-index
```