Skip to content

Commit

Permalink
Add mix.exs for mix build love
Browse files Browse the repository at this point in the history
  • Loading branch information
sanmiguel committed Sep 7, 2014
1 parent 06b39ef commit 803344c
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions mix.exs
@@ -0,0 +1,31 @@
defmodule RestService.Mixfile do
use Mix.Project

def project do
[ app: :rest_service,
version: "0.0.1",
elixir: "~> 0.15",
deps: deps ]
end

# Configuration for the OTP application
def application do
[ registered: [
:rest_service_sup,
:rest_service_store_sup,
:rest_service_store],
applications: [:cowboy],
mod: { :rest_service_app, [] } ]
end

# Returns the list of dependencies in the format:
# { :foobar, git: "https://github.com/elixir-lang/foobar.git", tag: "0.1" }
#
# To specify particular versions, regardless of the tag, do:
# { :barbat, "~> 0.1", github: "elixir-lang/barbat" }
defp deps do
[{:cowboy, github: "extend/cowboy", tag: "0.9.0"},
{:proper, github: "manopapad/proper", tag: "master"}
]
end
end

0 comments on commit 803344c

Please sign in to comment.