Packages

Automatically keep track of connected nodes to store and reconnect with them

Current section

Files

Jump to
Raw

mix.exs

defmodule ClusterBot.MixProject do
use Mix.Project
def project do
[
app: :cluster_bot,
version: "0.1.1",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
# Docs
name: "ClusterBot",
source_url: "https://github.com/micartey/cluster-bot",
docs: [
main: "readme",
extras: ["README.md", "LICENSE"]
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:cachex, "~> 4.0"},
{:ex_doc, "~> 0.34", only: :dev, runtime: false},
]
end
defp description() do
"Automatically keep track of connected nodes to store and reconnect with them"
end
defp package() do
[
name: "cluster_bot",
files: ~w(lib .formatter.exs mix.exs README* LICENSE*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/micartey/cluster-bot"}
]
end
end