This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
augie/webapp/mix.exs

74 lines
2.1 KiB
Elixir
Raw Normal View History

2019-11-29 17:55:52 +13:00
defmodule Augie.MixProject do
use Mix.Project
def project do
[
app: :augie,
version: "0.1.0",
2020-04-28 21:09:54 +12:00
elixir: "~> 1.7",
2019-11-29 17:55:52 +13:00
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
2020-04-28 21:09:54 +12:00
aliases: aliases(),
2019-11-29 17:55:52 +13:00
deps: deps()
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {Augie.Application, []},
2020-05-14 22:28:56 +12:00
extra_applications: [:logger, :runtime_tools, :os_mon]
2019-11-29 17:55:52 +13:00
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Specifies your project dependencies.
#
# Type `mix help deps` for examples and options.
defp deps do
[
{:calendar, "~> 1.0"},
{:circuits_uart_midi_framing, "~> 0.1.0"},
{:circuits_uart, "~> 1.4"},
2020-03-08 15:05:20 +13:00
{:circular_buffer, "~> 0.2.0"},
{:community_theatre, git: "https://gitlab.com/jimsy/community-theatre"},
2020-03-08 15:05:20 +13:00
{:contex, github: "mindok/contex"},
{:credo, "~> 1.1", only: [:dev, :test], runtime: false},
{:ex_erlstats, "~> 0.1"},
{:floki, ">= 0.0.0", only: :test},
2019-11-29 17:55:52 +13:00
{:gettext, "~> 0.11"},
{:jason, "~> 1.0"},
2020-04-28 21:09:54 +12:00
{:kinemat, git: "https://gitlab.com/jimsy/kinemat.git"},
{:midi_proto, "~> 0.1.0"},
{:observer_cli, "~> 1.5"},
{:phoenix_html, "~> 2.11"},
2020-04-28 21:09:54 +12:00
{:phoenix_live_dashboard, "~> 0.2.0"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
2020-04-28 21:09:54 +12:00
{:phoenix_live_view, "~> 0.12.1"},
{:phoenix_pubsub, "~> 2.0"},
{:phoenix, "~> 1.5.1"},
{:picam, "~> 0.4.1"},
2020-04-28 21:09:54 +12:00
{:plug_cowboy, "~> 2.0"},
{:postgrex, ">= 0.0.0"},
{:telemetry_metrics, "~> 0.4"},
{:telemetry_poller, "~> 0.4"}
2019-11-29 17:55:52 +13:00
]
end
2020-04-28 21:09:54 +12:00
# Aliases are shortcuts or tasks specific to the current project.
# For example, to install project dependencies and perform other setup tasks, run:
#
# $ mix setup
#
# See the documentation for `Mix` for more info on aliases.
defp aliases do
[]
end
2019-11-29 17:55:52 +13:00
end