Skip to content

Instantly share code, notes, and snippets.

@ricn
Created May 11, 2015 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricn/310451bc8cd8f58ff1d8 to your computer and use it in GitHub Desktop.
Save ricn/310451bc8cd8f58ff1d8 to your computer and use it in GitHub Desktop.
mix.exs
defmodule Bitdoc.Mixfile do
use Mix.Project
def project do
[app: :bitdoc,
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: {Bitdoc, []},
applications: [:phoenix, :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"},
{:phoenix_ecto, "~> 0.4"},
{:postgrex, ">= 0.0.0"},
{:phoenix_live_reload, "~> 0.4"},
{:phoenix_html, "~> 1.0"},
{:cowboy, "~> 1.0"}]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment