Skip to content

Instantly share code, notes, and snippets.

@ngw
Created May 10, 2017 09:55
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 ngw/f16ef4460ce5ee75740f565f3d494957 to your computer and use it in GitHub Desktop.
Save ngw/f16ef4460ce5ee75740f565f3d494957 to your computer and use it in GitHub Desktop.
defmodule Hedging.Mixfile do
use Mix.Project
def project do
[app: :hedging,
version: "0.0.2",
elixir: "~> 1.3",
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:phoenix, :gettext] ++ Mix.compilers,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
aliases: aliases(),
deps: deps()]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[mod: {Hedging, []},
applications: [:phoenix, :phoenix_pubsub, :phoenix_html, :cowboy, :logger, :gettext,
:phoenix_ecto, :postgrex, :csv, :ecto_enum, :money, :parallel_stream, :conform, :timex]]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "web", "test/support"]
defp elixirc_paths(:ci), 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, "~> 1.2.0"},
{:phoenix_pubsub, "~> 1.0"},
{:phoenix_ecto, "~> 3.0"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 2.6"},
{:phoenix_live_reload, "~> 1.0", only: :dev},
{:gettext, "~> 0.11"},
{:cowboy, "~> 1.0"},
{:ex_machina, "~> 1.0", only: [:test, :ci]},
{:credo, "~> 0.5", only: [:dev, :test, :ci]},
{:ecto_enum, "~> 0.3.0"},
{:money, "~> 1.2.0"},
{:csv, "~> 1.4.0"},
{:distillery, "~> 0.9"},
{:conform, "~> 2.1"},
{:timex, "~> 3.0"}
]
end
# Aliases are shortcuts or tasks specific to the current project.
# For example, to create, migrate and run the seeds file at once:
#
# $ mix ecto.setup
#
# See the documentation for `Mix` for more info on aliases.
defp aliases do
["ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
"test": ["ecto.create --quiet", "ecto.migrate", "test"]]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment