2021-03-05 19:23:32 -05:00
|
|
|
defmodule Shift73k.MixProject do
|
2020-09-12 18:43:17 -04:00
|
|
|
use Mix.Project
|
|
|
|
|
|
|
|
def project do
|
|
|
|
[
|
2021-03-05 19:23:32 -05:00
|
|
|
app: :shift73k,
|
2022-08-13 06:19:56 -04:00
|
|
|
version: "0.1.1",
|
|
|
|
elixir: "~> 1.12",
|
2020-09-12 18:43:17 -04:00
|
|
|
elixirc_paths: elixirc_paths(Mix.env()),
|
2022-08-13 06:19:56 -04:00
|
|
|
compilers: Mix.compilers(),
|
2020-09-12 18:43:17 -04:00
|
|
|
start_permanent: Mix.env() == :prod,
|
|
|
|
aliases: aliases(),
|
|
|
|
deps: deps()
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Configuration for the OTP application.
|
|
|
|
#
|
|
|
|
# Type `mix help compile.app` for more information.
|
|
|
|
def application do
|
|
|
|
[
|
2021-03-05 19:23:32 -05:00
|
|
|
mod: {Shift73k.Application, []},
|
2020-09-12 18:43:17 -04:00
|
|
|
extra_applications: [:logger, :runtime_tools]
|
|
|
|
]
|
|
|
|
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
|
|
|
|
[
|
2022-08-13 06:19:56 -04:00
|
|
|
{:bcrypt_elixir, "~> 3.0"},
|
|
|
|
{:phoenix, "~> 1.6.11"},
|
|
|
|
{:phoenix_ecto, "~> 4.4"},
|
|
|
|
{:ecto_sql, "~> 3.6"},
|
2020-09-12 18:43:17 -04:00
|
|
|
{:postgrex, ">= 0.0.0"},
|
2022-08-13 06:19:56 -04:00
|
|
|
{:phoenix_html, "~> 3.0"},
|
2020-09-12 18:43:17 -04:00
|
|
|
{:phoenix_live_reload, "~> 1.2", only: :dev},
|
2022-08-13 06:19:56 -04:00
|
|
|
{:phoenix_live_view, "~> 0.17.5"},
|
|
|
|
{:floki, ">= 0.30.0", only: :test},
|
|
|
|
{:swoosh, "~> 1.7"},
|
|
|
|
{:gen_smtp, "~> 1.2"},
|
|
|
|
{:telemetry_metrics, "~> 0.6"},
|
|
|
|
{:telemetry_poller, "~> 1.0"},
|
|
|
|
{:jason, "~> 1.2"},
|
|
|
|
{:plug_cowboy, "~> 2.5"},
|
2021-03-04 22:03:27 -05:00
|
|
|
{:scrivener_ecto, "~> 2.0"},
|
2021-03-21 10:47:53 -04:00
|
|
|
{:tzdata, "~> 1.1"},
|
2021-03-23 15:12:24 -04:00
|
|
|
{:nimble_csv, "~> 1.0"},
|
2021-03-24 19:35:49 -04:00
|
|
|
{:icalendar, "~> 1.1"},
|
2021-03-29 07:31:52 -04:00
|
|
|
{:httpoison, "~> 1.7"},
|
|
|
|
|
|
|
|
# Additional packages
|
|
|
|
|
2022-08-13 06:19:56 -04:00
|
|
|
{:credo, "~> 1.5", only: [:dev, :test], runtime: false}
|
2020-09-12 18:43:17 -04:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
# 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
|
|
|
|
[
|
|
|
|
setup: ["deps.get", "ecto.setup", "cmd npm install --prefix assets"],
|
|
|
|
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
|
|
|
|
"ecto.reset": ["ecto.drop", "ecto.setup"],
|
|
|
|
test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"]
|
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|