-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
33 lines (30 loc) · 818 Bytes
/
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
defmodule Ivy.Main.Mixfile do
use Mix.Project
def project do
[app: :ivy,
version: "0.0.1",
elixir: "~> 1.0",
source_url: "https://github.com/m2w/ivy",
homepage: "https://m2w.github.com/ivy",
escript: [main_module: Ivy.Core,
emu_args: "-setcookie weCanBlogForDays!"],
deps: deps]
end
def application do
[applications: [:logger,
:mix,
:eex,
:cowboy,
:plug]]
end
defp deps do
[{:earmark, "~> 0.1.15"},
{:cowboy, "~> 1.0.0"},
{:plug, "~> 0.12.1"},
{:cowlib, "1.0.1"},
{:ranch, "~> 1.0.0"},
{:exprof, "~> 0.2.0", only: :dev},
{:file_monitor, github: "richcarl/file_monitor", ref: "master"},
{:ex_doc, "~> 0.7.2", only: :dev}]
end
end