Skip to content

Instantly share code, notes, and snippets.

@Sen
Created May 4, 2014 12:47
Show Gist options
  • Save Sen/9726b7715bcc99be17d4 to your computer and use it in GitHub Desktop.
Save Sen/9726b7715bcc99be17d4 to your computer and use it in GitHub Desktop.
cowboy
defmodule WebSocket.Mixfile do
use Mix.Project
def project do
[app: :bigdata_ws,
version: "0.0.1",
elixir: "~> 0.13.1",
deps: deps]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[
applications: [:ranch, :crypto, :cowboy, :gproc],
mod: {WebSocketServer, []},
]
end
# List all dependencies in the format:
#
# {:foobar, git: "https://github.com/elixir-lang/foobar.git", tag: "0.1"}
#
# Type `mix help deps` for more examples and options
defp deps do
[
{:cowboy, github: "extend/cowboy"},
{:gproc, github: "uwiger/gproc"},
{:exzmq, github: "zeromq/exzmq"},
]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment