-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmix.exs
44 lines (39 loc) · 926 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
defmodule Vox.MixProject do
use Mix.Project
@version "0.1.0"
def project do
[
app: :vox,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
dialyzer: [:ignore_warnings]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :eex]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:plug, "~> 1.14.2"},
{:plug_cowboy, "~> 2.0"},
{:plug_live_reload, "~> 0.1"},
{:file_system, "~> 0.2"},
{:mime, "~> 2.0.5"},
{:dialyxir, "~> 1.3", only: [:dev], runtime: false}
]
end
defp package do
%{
description: "Static site builder for Elixir lovers",
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/geolessel/vox"}
}
end
end