|
- defmodule Dagon.MixProject do
- use Mix.Project
-
- def project do
- [
- app: :dagon,
- version: "0.1.7",
- elixir: "~> 1.5",
- elixirc_paths: elixirc_paths(Mix.env()),
- compilers: [:phoenix, :gettext] ++ Mix.compilers(),
- start_permanent: Mix.env() == :prod,
- aliases: aliases(),
- deps: deps()
- ]
- end
-
- # Configuration for the OTP application.
- #
- # Type `mix help compile.app` for more information.
- def application do
- [
- mod: {Dagon.Application, []},
- extra_applications: [
- :logger,
- :logger_file_backend,
- :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
- [
- {:arc, "~> 0.11.0"},
- {:arc_ecto, "~> 0.11.2"},
- {:cachex, "~> 3.2"},
- {:distillery, "~> 2.0"},
- {:ecto_sql, "~> 3.1"},
- {:edeliver, "~> 1.6"},
- {:ex_cli, "~> 0.1.0"},
- {:gettext, "~> 0.11"},
- {:httpoison, "~> 1.6"},
- {:jason, "~> 1.0"},
- {:logger_file_backend, "~> 0.0.11"},
- {:phoenix, "~> 1.4.10"},
- {:phoenix_ecto, "~> 4.0"},
- {:phoenix_html, "~> 2.11"},
- {:phoenix_live_reload, "~> 1.2", only: :dev},
- {:phoenix_pubsub, "~> 1.1"},
- {:plug_cowboy, "~> 2.0"},
- {:postgrex, ">= 0.0.0"},
- {:timex, "~> 3.6"},
- {:pow, "~> 1.0.19"},
- {:quantum, "~> 2.3"},
- {:que, "~> 0.10.1"}
- ]
- end
-
- # Aliases are shortcuts or tasks specific to the current project.
- # For example, to create, migrate and run the seeds file at once:
- #
- # $ mix ecto.setup
- #
- # See the documentation for `Mix` for more info on aliases.
- defp aliases do
- [
- "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
- "ecto.reset": ["ecto.drop", "ecto.setup"],
- test: ["ecto.create --quiet", "ecto.migrate", "test"],
- restart: ["edeliver restart production"],
- migrate: ["edeliver migrate production"],
- deploy_ex: ["edeliver deploy release to production"],
- build_ex: ["edeliver build release"]
- ]
- end
- end
|