Created
May 4, 2014 12:47
-
-
Save Sen/9726b7715bcc99be17d4 to your computer and use it in GitHub Desktop.
cowboy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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