Skip to content

Instantly share code, notes, and snippets.

@willrax
Last active February 9, 2016 09:20
Show Gist options
  • Save willrax/78a21d7b0689234d6136 to your computer and use it in GitHub Desktop.
Save willrax/78a21d7b0689234d6136 to your computer and use it in GitHub Desktop.
defmodule Plugger.Mixfile do
use Mix.Project
# Project setup <snip>
def application do
[applications: [:logger, :cowboy, :plug],
mod: {Plugger, []}]
end
defp deps do
[
{:cowboy, "~> 1.0"},
{:plug, "~> 1.0"}
]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment