Introduce Elixir's powerful environments. And MixStar is a Mix task to starring GitHub repositories that your project dependent.
#m3dev M3 Tech Talk #16
app: :my_project, version: "0.0.1", deps: deps ] end # Configuration for the OTP application def application do [] end # Returns the list of dependencies in the format: # { :foobar, git: "https://github.com/elixir-lang/foobar.git", tag: "0.1" } # # To specify particular versions, regardless of the tag, do: # { :barbat, "~> 0.1", github: "elixir-lang/barbat" } defp deps do [{ :httpotion, github: "myfreeweb/httpotion" }] end end