aboutsummaryrefslogblamecommitdiffstats
path: root/examples/elixir_hello_world/mix.exs
blob: 862c6fa74033f9d5a55d1d08a88f5ed2baa6219e (plain) (tree)



















                                                      
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.6.1"},
      {:cowboy, github: "extend/cowboy"} ]
  end
end