aboutsummaryrefslogtreecommitdiffstats
path: root/examples/elixir_hello_world/mix.exs
blob: 905517586952a2f5a13ff7470b75947fa56dcaec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
defmodule ElixirHelloWorld.Mixfile do
  use Mix.Project

  def project do
    [ app: :elixir_hello_world,
      version: "0.0.1",
      deps: deps ]
  end

  # Configuration for the OTP application
  def application do
    [ mod: { ElixirHelloWorld, [] },
      applications: [:cowboy] ]
  end

  defp deps do
    [ {:ranch,  github: "extend/ranch", tag: "0.8.4"},
      {:cowboy, github: "extend/cowboy"} ]
  end
end