defmodule Gust.MixProject do use Mix.Project @version "0.1.21" def project do [ app: :gust, version: @version, build_path: "../../_build", config_path: "../../config/config.exs", deps_path: "../../deps", lockfile: "../../mix.lock", elixir: "~> 1.15", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, aliases: aliases(), deps: deps(), test_coverage: [tool: ExCoveralls], description: "A DAG-Based Workflow Orchestration Engine for Elixir", package: [ licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/marciok/gust"} ] ] end # Configuration for the OTP application. # # Type `mix help compile.app` for more information. def application do [ mod: {Gust.Application, []}, extra_applications: [:logger, :runtime_tools] ] end # Specifies which paths to compile per environment. defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] # Specifies your project dependencies. # # Type `mix help deps` for examples and options. defp deps do [ {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}, {:dns_cluster, "~> 0.2.0"}, {:phoenix_pubsub, "~> 2.1"}, {:ecto_sql, "~> 3.13"}, {:postgrex, ">= 0.0.0"}, {:jason, "~> 1.2"}, {:swoosh, "~> 1.16"}, {:req, "~> 0.5"}, {:quantum, "~> 3.0"}, {:cloak_ecto, "~> 1.2.0"}, {:file_system, "~> 1.1", only: [:dev, :test]} ] end # Aliases are shortcuts or tasks specific to the current project. # # See the documentation for `Mix` for more info on aliases. defp aliases do [ setup: ["deps.get", "ecto.setup"], "ecto.setup": ["ecto.create", "ecto.migrate", "run #{__DIR__}/priv/repo/seeds.exs"], "ecto.reset": ["ecto.drop", "ecto.setup"], test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"] ] end end