Skip to content

Instantly share code, notes, and snippets.

@mitchellhenke
Created March 10, 2016 17:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mitchellhenke/3a712b606eca72497202 to your computer and use it in GitHub Desktop.
Save mitchellhenke/3a712b606eca72497202 to your computer and use it in GitHub Desktop.
defmodule App.Mixfile do
use Mix.Project
def project do
[app: :app,
version: "0.0.1",
elixir: "~> 1.2",
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:phoenix] ++ Mix.compilers,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
aliases: aliases
]
end
defp aliases do
"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