mirror of
https://github.com/amineo/t2_server_query_elixir.git
synced 2026-04-25 22:25:23 +00:00
* init
This commit is contained in:
commit
3b22db761b
12 changed files with 592 additions and 0 deletions
27
mix.exs
Normal file
27
mix.exs
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
defmodule T2ServerQuery.MixProject do
|
||||
use Mix.Project
|
||||
|
||||
def project do
|
||||
[
|
||||
app: :t2_server_query,
|
||||
version: "0.1.0",
|
||||
elixir: "~> 1.12",
|
||||
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
|
||||
[
|
||||
{:credo, "~> 1.5"}
|
||||
]
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue