-
Notifications
You must be signed in to change notification settings - Fork 203
Expand file tree
/
Copy pathmix.exs
More file actions
31 lines (28 loc) · 702 Bytes
/
Copy pathmix.exs
File metadata and controls
31 lines (28 loc) · 702 Bytes
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
defmodule Chat.Mixfile do
use Mix.Project
def project do
[app: :chat,
version: "0.0.1",
elixir: "~> 1.6",
elixirc_paths: ["lib", "web"],
compilers: [:phoenix] ++ Mix.compilers,
deps: deps()]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[mod: {Chat, []},
extra_applications: [:logger]]
end
# Specifies your project dependencies
#
# Type `mix help deps` for examples and options
defp deps do
[{:phoenix, "~> 1.3"},
{:phoenix_html, "~> 2.10"},
{:phoenix_live_reload, "~> 1.1", only: :dev},
{:postgrex, "~> 0.13"},
{:cowboy, "~> 1.1"}]
end
end