Created
September 8, 2016 16:47
-
-
Save pareeohnos/7019a0e7fd5d4de81dd336cca4af035c 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 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