defmodule Phenom.MixProject do use Mix.Project @version "0.1.0" @source_url "https://github.com/dimamik/phenom" def project do [ app: :phenom, version: @version, elixir: "~> 1.15", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, aliases: aliases(), deps: deps(), docs: docs(), package: package(), description: description(), compilers: [:phoenix_live_view] ++ Mix.compilers(), listeners: [Phoenix.CodeReloader] ] end defp description do "Phoenix starter you'd build yourself, if you had the time." end defp package do [ name: "phenom", licenses: ["MIT"], links: %{ "GitHub" => @source_url, "Changelog" => "#{@source_url}/blob/main/CHANGELOG.md" }, files: ~w(lib priv img .formatter.exs mix.exs README.md LICENSE CHANGELOG.md) ] end # Configuration for the OTP application. # # Type `mix help compile.app` for more information. def application do [ mod: {Phenom.Application, []}, extra_applications: [:logger, :runtime_tools, :os_mon] ] end def cli do [ preferred_envs: [ precommit: :test, "ecto.migrate": :test, "ecto.reset": :test, "ecto.rollback": :test, "ecto.gen": :test, "test.ci": :test, "test.reset": :test, "test.setup": :test ] ] 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 [ {:bandit, "~> 1.5"}, {:dns_cluster, "~> 0.2.0"}, {:dotenvy, "~> 1.0"}, {:ecto_psql_extras, "~> 0.8"}, {:ecto_sql, "~> 3.13"}, {:gettext, "~> 0.26"}, {:heroicons, github: "tailwindlabs/heroicons", tag: "v2.2.0", sparse: "optimized", app: false, compile: false, only: :dev, depth: 1}, {:jason, "~> 1.2"}, {:oban, "~> 2.0"}, {:phoenix, "~> 1.8.1"}, {:phoenix_ecto, "~> 4.5"}, {:phoenix_html, "~> 4.1"}, {:phoenix_live_dashboard, "~> 0.8.3"}, {:phoenix_live_view, "~> 1.1.0"}, {:postgrex, ">= 0.0.0"}, {:req, "~> 0.5"}, {:oban_web, "~> 2.11"}, {:swoosh, "~> 1.16"}, {:telemetry_metrics, "~> 1.0"}, {:telemetry_poller, "~> 1.0"}, {:credo, "~> 1.7", only: [:dev, :test], runtime: false}, {:esbuild, "~> 0.10", runtime: Mix.env() == :dev}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}, {:igniter, "~> 0.7", only: [:dev]}, {:lazy_html, ">= 0.1.0", only: :test}, {:phoenix_live_reload, "~> 1.2", only: :dev}, {:sobelow, "~> 0.14", only: [:dev, :test], runtime: false, warn_if_outdated: true}, {:tailwind, "~> 0.3", runtime: Mix.env() == :dev} ] end # This is Phenom-specific documentation configuration defp docs do [ main: "readme", logo: "img/logo.png", extras: [{:"README.md", title: "Phenom"}], assets: %{"img" => "img"}, api_reference: false, filter_modules: fn mod, _ -> mod |> Module.split() |> hd() == "Mix" end ] 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 [ release: [ "cmd git tag v#{@version}", "cmd git push", "cmd git push --tags", "hex.publish --yes" ], "test.setup": ["ecto.create --quiet", "ecto.migrate --quiet"], setup: ["deps.get", "ecto.setup", "assets.setup", "assets.build"], "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"], "assets.setup": ["tailwind.install --if-missing", "esbuild.install --if-missing"], "assets.build": ["compile", "tailwind phenom", "esbuild phenom"], "assets.deploy": [ "tailwind phenom --minify", "esbuild phenom --minify", "phx.digest" ], "test.security": ["sobelow --threshold high --ignore Config.HTTPS,Config.CSP"], precommit: [ "compile --warning-as-errors", "deps.unlock --unused", "format", "credo", "test" ] ] end end