defmodule Indexer.MixProject do use Mix.Project def project do [ aliases: aliases(), app: :indexer, build_path: "../../_build", config_path: "../../config/config.exs", deps: deps(), deps_path: "../../deps", elixir: "~> 1.6", elixirc_paths: elixirc_paths(Mix.env()), lockfile: "../../mix.lock", start_permanent: Mix.env() == :prod, version: "0.1.0" ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger], mod: {Indexer.Application, []} ] end defp aliases do [ # so that the supervision tree does not start, which would begin indexing, and so that the various fetchers can # be started with `ExUnit`'s `start_supervised` for unit testing. test: "test --no-start" ] end # Run "mix help deps" to learn about dependencies. defp deps do [ # JSONRPC access to Parity for `Explorer.Indexer` {:ethereum_jsonrpc, in_umbrella: true}, # Code coverage {:excoveralls, "~> 0.10.0", only: [:test], github: "KronicDeth/excoveralls", branch: "circle-workflows"}, # Importing to database {:explorer, in_umbrella: true}, # Log errors and application output to separate files {:logger_file_backend, "~> 0.0.10"}, # Mocking `EthereumJSONRPC.Transport`, so we avoid hitting real chains for local testing {:mox, "~> 0.4", only: [:test]} ] end # Specifies which paths to compile per environment. defp elixirc_paths(:test), do: ["test/support" | elixirc_paths(:dev)] defp elixirc_paths(_), do: ["lib"] end