0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-15 12:40:25 +00:00
cowboy/examples/elixir_hello_world/mix.exs

21 lines
418 B
Elixir
Raw Normal View History

2013-01-29 10:18:52 -08:00
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
2013-08-24 20:35:28 +02:00
[ {:ranch, github: "extend/ranch", tag: "0.8.5"},
2013-01-29 10:18:52 -08:00
{:cowboy, github: "extend/cowboy"} ]
end
end