analytics/mix.exs

80 lines
2.3 KiB
Elixir
Raw Normal View History

2019-09-02 14:29:19 +03:00
defmodule Plausible.MixProject do
use Mix.Project
def project do
[
app: :plausible,
version: "0.1.0",
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env()), compilers: [:phoenix, :gettext] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
2019-10-25 09:18:07 +03:00
deps: deps(),
test_coverage: [tool: ExCoveralls]
2019-09-02 14:29:19 +03:00
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {Plausible.Application, []},
extra_applications: [:logger, :sentry, :runtime_tools, :timex, :ua_inspector, :ref_inspector, :bamboo]
]
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
[
{:browser, "~> 0.4.3"},
{:bcrypt_elixir, "~> 2.0"},
{:cors_plug, "~> 1.5"},
{:ecto_sql, "~> 3.0"},
{:elixir_uuid, "~> 1.2"},
{:gettext, "~> 0.11"},
{:jason, "~> 1.0"},
{:phoenix, "~> 1.4.0"},
{:phoenix_active_link, "~> 0.2.1"},
{: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"},
2019-12-04 07:59:58 +03:00
{:ref_inspector, "~> 1.3"},
2019-12-04 07:49:46 +03:00
{:timex, "~> 3.6"},
2019-09-02 14:29:19 +03:00
{:ua_inspector, "~> 0.18"},
{:bamboo, "~> 1.2"},
{:bamboo_postmark, "~> 0.5"},
{:poison, ">= 1.5.0"}, # For bamboo_postmark
{:sentry, "~> 7.0"},
{:httpoison, "~> 1.4"},
{:ex_machina, "~> 2.3", only: :test},
2019-10-25 09:18:07 +03:00
{:excoveralls, "~> 0.10", only: :test},
2019-09-02 14:29:19 +03:00
{:joken, "~> 2.0"},
{:php_serializer, "~> 0.9.0"}
]
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"]
]
end
end