019f8fd211
git-subtree-dir: users/wpcarro git-subtree-mainline:464bbcb15c
git-subtree-split:24f5a642af
Change-Id: I6105b3762b79126b3488359c95978cadb3efa789
32 lines
632 B
Elixir
32 lines
632 B
Elixir
defmodule Server.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :server,
|
|
version: "0.1.0",
|
|
elixir: "~> 1.10",
|
|
start_permanent: Mix.env() == :prod,
|
|
deps: deps()
|
|
]
|
|
end
|
|
|
|
# Run "mix help compile.app" to learn about applications.
|
|
def application do
|
|
[
|
|
extra_applications: [:logger],
|
|
mod: {App, []}
|
|
]
|
|
end
|
|
|
|
# Run "mix help deps" to learn about dependencies.
|
|
defp deps do
|
|
[
|
|
{:cortex, "~> 0.1", only: [:dev, :test]},
|
|
{:plug_cowboy, "~> 2.4.1"},
|
|
{:cowboy, "~> 2.8.0"},
|
|
{:plug, "~> 1.11.0"},
|
|
{:poison, "~> 4.0.1"}
|
|
]
|
|
end
|
|
end
|