Created
June 13, 2015 04:33
-
-
Save darui00kara/465eabb542c9f16b512c to your computer and use it in GitHub Desktop.
This file contains hidden or 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 PhoenixBbs.Mixfile do | |
use Mix.Project | |
def project do | |
[app: :phoenix_bbs, | |
version: "0.0.1", | |
elixir: "~> 1.0", | |
elixirc_paths: elixirc_paths(Mix.env), | |
compilers: [:phoenix] ++ Mix.compilers, | |
build_embedded: Mix.env == :prod, | |
start_permanent: Mix.env == :prod, | |
deps: deps] | |
end | |
# Configuration for the OTP application | |
# | |
# Type `mix help compile.app` for more information | |
def application do | |
[mod: {PhoenixBbs, []}, | |
applications: [:phoenix, :phoenix_html, :cowboy, :logger, | |
:phoenix_ecto, :postgrex]] | |
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 | |
# | |
# Type `mix help deps` for examples and options | |
defp deps do | |
[{:phoenix, "~> 0.13.1"}, | |
{:phoenix_ecto, "~> 0.4"}, | |
{:postgrex, ">= 0.0.0"}, | |
{:phoenix_html, "~> 1.0"}, | |
{:phoenix_live_reload, "~> 0.4", only: :dev}, | |
{:cowboy, "~> 1.0"}, | |
{:mongo, "~> 0.5.1"}] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment