Skip to content

Instantly share code, notes, and snippets.

@j-mcnally
Created September 5, 2014 05:47
Show Gist options
  • Save j-mcnally/c2cd5ca4e4f3cd2acd49 to your computer and use it in GitHub Desktop.
Save j-mcnally/c2cd5ca4e4f3cd2acd49 to your computer and use it in GitHub Desktop.
defmodule Koncur.Mixfile do
use Mix.Project
def project do
[ app: :koncur,
version: "0.0.1",
elixir: "~> 1.0.0-rc1",
elixirc_paths: ["lib", "web"],
deps: deps ]
end
# Configuration for the OTP application
def application do
[
mod: { Koncur, [] },
applications: [:cowboy, :phoenix, :logger, :postgrex, :ecto]
]
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, "~> 1.0.0"},
{:phoenix, github: "phoenixframework/phoenix"},
{:postgrex, ">= 0.0.0"},
{:ecto, "~> 0.2.0"},
{:oauth2ex, github: "parroty/oauth2ex"}
]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment