amethyst/apps/amethyst/mix.exs
Kodi Craft 5413708b29
All checks were successful
Build & Test / nix-build (push) Successful in 1m31s
Begin complete rewrite of communication system
2024-09-05 19:06:35 +02:00

46 lines
1007 B
Elixir

defmodule Amethyst.MixProject do
use Mix.Project
def project do
[
app: :amethyst,
version: "0.1.0",
elixir: "~> 1.17",
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "Amethyst",
source_url: "https://git.colon-three.com/kodi/amethyst",
docs: [
main: "readme",
extras: ["../../README.md", "../../LICENSE.md"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :public_key],
mod: {Amethyst.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:uuid, "~> 1.1"},
{:ex_doc, "~> 0.22", only: :dev, runtime: false},
{:jason, "~> 1.4"}
]
end
end