-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
30 lines (28 loc) · 744 Bytes
/
mix.exs
File metadata and controls
30 lines (28 loc) · 744 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
defmodule Build do
use Mix.Project
def project do
[
app: :microchess_gameplay,
version: "0.1.0",
elixir: "~> 1.19",
start_permanent: Mix.env() == :prod,
deps: [
{:libcluster, "~> 3.4"},
{:horde, "~> 0.9.0"},
{:joken, "~> 2.6"},
{:bandit, "~> 1.0"},
{:websock, "~> 0.5"},
{:plug, "~> 1.14"},
{:jason, "~> 1.4"},
{:msgpax, "~> 2.3"},
{:mongodb_driver, "~> 1.5"},
]
]
end
def application do
[
extra_applications: [:logger],
mod: {Startup, []}
]
end
end