Skip to content

Commit

Permalink
chore: add mix.exs fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
sheerlox committed Nov 17, 2023
1 parent 7f6c932 commit 36db0f3
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions tests/fixtures/mix.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
defmodule HelloWorld.MixProject do
use Mix.Project

def project do
[
app: :hello_world,
version: "0.1.0",
elixir: "~> 1.15",
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
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end

0 comments on commit 36db0f3

Please sign in to comment.