View Source Datapio.Cluster
Integrate libcluster into an OTP application.
installation
Installation
The package can be installed by adding datapio_cluster
to your list of
dependencies in mix.exs
:
def deps do
[
{
:datapio_cluster,
github: "datapio/opencore",
ref: "main",
sparse: "apps/datapio_cluster"
}
]
end
Then add the datapio_cluster
application to the list of extra applications:
def application do
[
extra_applications: [:logger, :datapio_cluster]
]
end