Skip to content

Instantly share code, notes, and snippets.

@efatsi

efatsi/mix.exs Secret

Created November 5, 2014 17:47
Show Gist options
  • Save efatsi/454ed3513323f703b2be to your computer and use it in GitHub Desktop.
Save efatsi/454ed3513323f703b2be to your computer and use it in GitHub Desktop.
defmodule Pitch.Mixfile do
use Mix.Project
def project do
[app: :pitch,
version: "0.0.1",
elixir: "~> 1.0",
elixirc_paths: ["lib", "web"],
compilers: [:phoenix] ++ Mix.compilers,
deps: deps]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[mod: {Pitch, []},
applications: [:phoenix, :cowboy, :logger]]
end
# Specifies your project dependencies
#
# Type `mix help deps` for examples and options
defp deps do
[
{:phoenix, github: "phoenixframework/phoenix"},
{:cowboy, "~> 1.0"},
{:postgrex, "~> 0.6.0"},
{:ecto, "~> 0.2.5"},
{:exrm, "~> 0.14.11"}
]
end
end
%{"conform": {:hex, :conform, "0.10.5"},
"cowboy": {:hex, :cowboy, "1.0.0"},
"cowlib": {:hex, :cowlib, "1.0.0"},
"decimal": {:hex, :decimal, "0.2.5"},
"ecto": {:hex, :ecto, "0.2.5"},
"exrm": {:hex, :exrm, "0.14.11"},
"linguist": {:hex, :linguist, "0.1.2"},
"phoenix": {:git, "git://github.com/phoenixframework/phoenix.git", "bfa2631ceb816a88f4f33ee4257ff700ac983445", []},
"plug": {:hex, :plug, "0.8.2"},
"poison": {:hex, :poison, "1.2.0"},
"poolboy": {:hex, :poolboy, "1.2.1"},
"postgrex": {:hex, :postgrex, "0.6.0"},
"ranch": {:hex, :ranch, "1.0.0"}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment