#--- # Excerpted from "Concurrent Data Processing in Elixir", # published by The Pragmatic Bookshelf. # Copyrights apply to this code. It may not be used to create training material, # courses, books, articles, and the like. Contact us if you are in doubt. # We make no guarantees that this code is fit for any purpose. # Visit http://www.pragmaticprogrammer.com/titles/sgdpelixir for more book information. #--- defmodule Scraper.MixProject do use Mix.Project def project do [ app: :scraper, version: "0.1.0", elixir: "~> 1.8", start_permanent: Mix.env() == :prod, deps: deps() ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger], mod: {Scraper.Application, []} ] end defp deps do [ {:gen_stage, "~> 1.0"}, {:broadway, "~> 0.6"} ] end end