amethyst/apps/amethyst/mix.exs
Kodi Craft 1d9467cec4
Some checks failed
Build & Test / nix-build (push) Failing after 32s
[Major] Move to umbrella structure
2024-08-16 18:27:34 +02:00

45 lines
975 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}
]
end
end