Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Is A Elixir Environment enough for development?

Is A Elixir Environment enough for development?

Introduce Elixir's powerful environments. And MixStar is a Mix task to starring GitHub repositories that your project dependent.
#m3dev M3 Tech Talk #16

Takayuki Matsubara

December 20, 2013
Tweet

More Decks by Takayuki Matsubara

Other Decks in Programming

Transcript

  1. NJYFYT defmodule MyProject.Mixfile do use Mix.Project def project do [

    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