-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmix.exs
More file actions
35 lines (32 loc) · 660 Bytes
/
Copy pathmix.exs
File metadata and controls
35 lines (32 loc) · 660 Bytes
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
defmodule Ala.MixProject do
use Mix.Project
def project do
[
app: :ala,
version: "1.0.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
elixirc_paths: Path.wildcard("*.ex"),
elixirc_options: [ignore_module_conflict: true],
releases: [
cns_app: [
include_executables_for: [:unix]
]
]
]
end
def application do
[
mod: {Ala.Application, []},
extra_applications: [:logger, :crypto, :erlexec]
]
end
defp deps do
[
{:jason, "~> 1.4"},
{:file_system, "~> 1.0"},
{:erlexec, "~> 2.0"}
]
end
end