Skip to content

Commit

Permalink
Added first attempt at mix.exs
Browse files Browse the repository at this point in the history
  • Loading branch information
knutin committed Aug 15, 2017
1 parent d3db7e8 commit e3011af
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
defmodule Eredis.Mixfile do
use Mix.Project

def project do
[
app: :eredis,
version: "1.1.0",
elixir: "~> 1.5.1",
start_permanent: Mix.env == :prod,
deps: deps()
]
end

# Run "mix help compile.app" to learn about applications.
def application do
[]
end

# Run "mix help deps" to learn about dependencies.
defp deps do
[]
end
end

0 comments on commit e3011af

Please sign in to comment.