defmodule Chatx.MixProject do use Mix.Project @github_url "https://github.com/vKxni/chatx" def project do [ app: :chatx, version: "0.1.0", description: "Erlang-first realtime chat engine for BEAM", elixir: "~> 1.17", erlc_paths: ["lib/chatx/erlang"], start_permanent: Mix.env() == :prod, deps: deps(), package: [ maintainers: ["vKxni"], licenses: ["MIT"], links: %{ GitHub: @github_url } ], source_url: @github_url, docs: [ main: "readme", extras: [ "README.md" ] ] ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger], mod: {Chatx.Application, []} ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:telemetry, "~> 1.2"}, {:ex_doc, "~> 0.37", only: :dev, runtime: false} ] end end