SearchEx
A full-text search engine written in pure Elixir.
Installation
To install the escript:
mix escript.install https://raw.githubusercontent.com/andyl/search_ex/master/search_ex
The package can be added to your project from Hex:
-
Add
search_exto your list of dependencies inmix.exs:
```elixir
def deps do
[{:search_ex, "~> 0.0.1-alpha.1"}]
end
```-
Ensure
search_exis started before your application:
```elixir
def application do
[applications: [:search_ex]]
end
```