Telepathy project is intended to show that you can easily get database events from PostgreSQL directly to custom Elixir gen_server.
You can see check out usage examples in the testapp folder.
If available in Hex, the package can be installed as:
- Add
telepathyto your list of dependencies inmix.exs:
```elixir
def deps do
[{:telepathy, "~> 0.1.0"}]
end
```
- Ensure
telepathyis started before your application:
```elixir
def application do
[applications: [:telepathy]]
end
```