Skip to content

Instantly share code, notes, and snippets.

@pareeohnos
Created September 8, 2016 16:47
Show Gist options
  • Save pareeohnos/7019a0e7fd5d4de81dd336cca4af035c to your computer and use it in GitHub Desktop.
Save pareeohnos/7019a0e7fd5d4de81dd336cca4af035c to your computer and use it in GitHub Desktop.
defmodule MyApp.Mixfile do
use Mix.Project
def project do
[app: :my_app
......
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