-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
67 lines (59 loc) · 1.42 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
defmodule SendInBlue.MixProject do
use Mix.Project
def project do
[
app: :sendinbluex,
deps: deps(),
description: description(),
dialyzer: [plt_add_apps: [:mix, :jason]],
elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env()),
package: package(),
source_url: "https://github.com/Lean5/sendinbluex",
version: "0.1.0",
]
end
def application do
[
applications: apps(Mix.env()),
env: env(),
mod: {SendInBlue, []}
]
end
defp apps(:test), do: [:bypass | apps()]
defp apps(_), do: apps()
defp apps(), do: [:hackney, :logger]
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp env() do
[
api_base_url: "https://api.sendinblue.com/v3/",
tracker_base_url: "https://in-automate.sendinblue.com/api/v2/",
pool_options: [
timeout: 5_000,
max_connections: 10
],
use_connection_pool: true
]
end
defp deps do
[
{:bypass, "~> 1.0", only: :test},
{:dialyxir, "~> 0.5", only: [:dev, :test], runtime: false},
{:hackney, "~> 1.13"},
{:jason, "~> 1.0"},
]
end
defp description do
"""
A SendInBlue client for Elixir.
"""
end
defp package() do
[
maintainers: ["Manuel Pöter"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/Lean5/sendinbluex"}
]
end
end