amethyst/mix.exs
Kodi Craft 3e6cc5273d
All checks were successful
Build & Test / nix-build (push) Successful in 1m11s
Fix mix release
2024-08-17 17:21:30 +02:00

30 lines
589 B
Elixir

defmodule AmethystUmbrella.MixProject do
use Mix.Project
def project do
[
apps_path: "apps",
version: "0.1.0",
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
deps: deps(),
releases: [
amethyst: [
version: "0.1.0",
applications: [amethyst: :permanent]
]
]
]
end
# Dependencies listed here are available only for this
# project and cannot be accessed from applications inside
# the apps folder.
#
# Run "mix help deps" for examples and options.
defp deps do
[]
end
end