spazio-solazzo/mix.exs
2026-03-08 19:20:27 +01:00

133 lines
3.9 KiB
Elixir

# Copyright 2026 Victor Martinez Montané
#
# Licensed under the Apache License, Version 2.0 (the "License"),
# subject to the Commons Clause License Condition v1.0.
# You may not use this file except in compliance with the License.
#
# See the LICENSE file for details.
#
defmodule SpazioSolazzo.MixProject do
use Mix.Project
def project do
[
app: :spazio_solazzo,
version: "0.1.0",
elixir: "~> 1.15",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
compilers: [:phoenix_live_view] ++ Mix.compilers(),
listeners: [Phoenix.CodeReloader],
consolidate_protocols: Mix.env() != :dev
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {SpazioSolazzo.Application, []},
extra_applications: [:logger, :runtime_tools]
]
end
def cli do
[
preferred_envs: [precommit: :test]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(env) when env in [:test, :ci], do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Specifies your project dependencies.
#
# Type `mix help deps` for examples and options.
defp deps do
[
{:ash, "~> 3.0"},
{:ash_authentication, "~> 4.0"},
{:ash_authentication_phoenix, "~> 2.0"},
{:ash_phoenix, "~> 2.0"},
{:ash_postgres, "~> 2.0"},
{:ash_state_machine, "~> 0.2"},
{:bandit, "~> 1.5"},
{:bcrypt_elixir, "~> 3.0"},
{:credo, "~> 1.7", only: [:dev, :test, :ci], runtime: false},
{:dns_cluster, "~> 0.2.0"},
{:ecto_sql, "~> 3.13"},
{:esbuild, "~> 0.10", runtime: Mix.env() == :dev},
{:gettext, "~> 1.0"},
{:heroicons,
github: "tailwindlabs/heroicons",
tag: "v2.2.0",
sparse: "optimized",
app: false,
compile: false,
depth: 1},
{:igniter, "~> 0.6", only: [:dev, :test, :ci]},
{:jason, "~> 1.2"},
{:lazy_html, ">= 0.1.0", only: [:test, :ci]},
{:live_debugger, "~> 0.5", only: [:dev]},
{:oban, "~> 2.18"},
{:phoenix, "~> 1.8.3"},
{:phoenix_ecto, "~> 4.5"},
{:phoenix_html, "~> 4.1"},
{:phoenix_live_dashboard, "~> 0.8.3"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_live_view, "~> 1.1.0"},
{:phoenix_swoosh, "~> 1.0"},
{:picosat_elixir, "~> 0.2"},
{:postgrex, ">= 0.0.0"},
{:req, "~> 0.5"},
{:resend, "~> 0.4.0"},
{:sourceror, "~> 1.8", only: [:dev, :test, :ci]},
{:swoosh, "~> 1.16"},
{:tailwind, "~> 0.3", runtime: Mix.env() == :dev},
{:telemetry_metrics, "~> 1.0"},
{:telemetry_poller, "~> 1.0"},
{:tidewave, "~> 0.5", only: [:dev]},
{:usage_rules, "~> 0.1", only: [:dev]}
]
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.drop",
"ash.setup",
"assets.setup",
"assets.build",
"run priv/repo/seeds.exs"
],
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
test: ["ecto.drop", "ecto.create", "ecto.migrate", "test"],
"assets.setup": ["tailwind.install --if-missing", "esbuild.install --if-missing"],
"assets.build": ["compile", "tailwind spazio_solazzo", "esbuild spazio_solazzo"],
"assets.deploy": [
"tailwind spazio_solazzo --minify",
"esbuild spazio_solazzo --minify",
"phx.digest"
],
precommit: [
"compile --warnings-as-errors",
"deps.unlock --unused",
"format",
"test",
"credo"
]
]
end
end