forked from riccardomanfrin/zerossl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
52 lines (45 loc) · 1.27 KB
/
Copy pathmix.exs
File metadata and controls
52 lines (45 loc) · 1.27 KB
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
45
46
47
48
49
50
51
52
defmodule Zerossl.MixProject do
use Mix.Project
def project do
[
app: :zerossl,
version: "1.0.0",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env()),
# Docs
name: "zerossl",
source_url: "https://github.com/riccard.manfrin/zerossl",
docs: [
# The main page in the docs
main: "readme",
# logo: "path/to/logo.png",
extras: ["README.md"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: extra_applications(Mix.env()),
mod: {ZerosslSup, []}
]
end
defp elixirc_paths(env) when env in [:dev, :test], do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp extra_applications(env) when env in [:dev, :test],
do: [:logger, :inets, :observer, :wx, :runtime_tools]
defp extra_applications(_), do: [:logger, :inets]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:httpoison, "~> 2.0"},
{:jason, "~> 1.4"},
{:x509, "~> 0.8"},
# Non prod
{:ex_doc, "~> 0.30", only: :dev, runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}
]
end
end