forked from HashNuke/mogo-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
32 lines (28 loc) · 751 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
defmodule MogoChat.Mixfile do
use Mix.Project
def project do
[ app: :mogo_chat,
version: "0.0.1",
build_per_environment: true,
elixir: "~> 0.12.5",
deps: deps ]
end
# Configuration for the OTP application
def application do
[
applications: [:phoenix, :bcrypt, :qdate, :jsex, :uuid],
mod: { MogoChat, []}
]
end
defp deps do
[
{:phoenix, github: "phoenixframework/phoenix"},
{:ecto, github: "elixir-lang/ecto"},
{:postgrex, github: "ericmj/postgrex"},
{:jsex, github: "talentdeficit/jsex"},
{:qdate, github: "choptastic/qdate" },
{:bcrypt, github: "irccloud/erlang-bcrypt"},
{:uuid, github: "okeuday/uuid"}
]
end
end