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

23 lines
456 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()
]
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