master
Rachel Fae Fox (foxiepaws) 2019-07-30 22:42:58 -04:00
parent 7c271e465d
commit 4e7b7b3a5c
1 changed files with 28 additions and 0 deletions

28
mix.exs Normal file
View File

@ -0,0 +1,28 @@
defmodule SystemBooster.MixProject do
use Mix.Project
def project do
[
app: :systembooster,
version: "0.1.0",
elixir: "~> 1.8",
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
[
{:hunter, "~> 0.4"}
]
end
end