This repository has been archived on 2024-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
mebe/mix.exs

47 lines
1.1 KiB
Elixir
Raw Permalink Normal View History

2015-11-17 21:09:21 +00:00
defmodule MebeWeb.Mixfile do
2015-05-14 20:58:25 +00:00
use Mix.Project
def project() do
2015-11-17 21:09:21 +00:00
[app: :mebe_web,
version: "1.3.2",
elixir: "~> 1.4",
2015-11-17 21:09:21 +00:00
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:phoenix] ++ Mix.compilers,
2015-05-14 20:58:25 +00:00
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps()]
2015-05-14 20:58:25 +00:00
end
2015-11-17 21:09:21 +00:00
# Configuration for the OTP application
2015-05-14 20:58:25 +00:00
#
2015-11-17 21:09:21 +00:00
# Type `mix help compile.app` for more information
def application() do
[
mod: {MebeWeb, []},
extra_applications: [
:logger
]
]
2015-11-17 21:09:21 +00:00
end
# Specifies which paths to compile per environment
defp elixirc_paths(:test), do: ["lib", "web", "test/support"]
defp elixirc_paths(_), do: ["lib", "web"]
# Specifies your project dependencies
2015-05-14 20:58:25 +00:00
#
2015-11-17 21:09:21 +00:00
# Type `mix help deps` for examples and options
defp deps() do
2015-11-17 21:09:21 +00:00
[
2017-03-23 22:30:05 +00:00
{:phoenix, "~> 1.2.3"},
{:phoenix_live_reload, "~> 1.0.7", only: :dev},
{:phoenix_html, "~> 2.9.2"},
{:cowboy, "~> 1.0.4"},
2017-03-23 22:30:05 +00:00
{:earmark, "~> 1.2.0"},
{:slugger, github: "h4cc/slugger", ref: "98e907f85d34e6c8a94270249318bdad6f838198"},
{:calendar, "~> 0.17.2"},
{:mbu, "~> 2.0.0"}
2015-11-17 21:09:21 +00:00
]
2015-05-14 20:58:25 +00:00
end
end