init: igniter.new

This commit is contained in:
2026-03-13 17:42:49 +01:00
parent 9b8ce9ab3d
commit 001748613e
8 changed files with 104 additions and 3 deletions

31
mix.exs Normal file
View File

@@ -0,0 +1,31 @@
defmodule Parrhesia.MixProject do
use Mix.Project
def project do
[
app: :parrhesia,
version: "0.1.0",
elixir: "~> 1.19",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ecto, "~> 3.0"},
{:deps_changelog, "~> 0.3"},
{:igniter, "~> 0.6", only: [:dev, :test]}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end