From b69903435e0278a6a91749d729f08ac01a8f623a Mon Sep 17 00:00:00 2001 From: Yurii Rashkovskii Date: Tue, 29 Jan 2013 10:18:52 -0800 Subject: Elixir hello world example --- examples/elixir_hello_world/mix.exs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 examples/elixir_hello_world/mix.exs (limited to 'examples/elixir_hello_world/mix.exs') diff --git a/examples/elixir_hello_world/mix.exs b/examples/elixir_hello_world/mix.exs new file mode 100644 index 0000000..862c6fa --- /dev/null +++ b/examples/elixir_hello_world/mix.exs @@ -0,0 +1,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.6.1"}, + {:cowboy, github: "extend/cowboy"} ] + end +end -- cgit v1.2.3