2019-09-02 14:29:19 +03:00
|
|
|
|
defmodule Plausible.MixProject do
|
|
|
|
|
use Mix.Project
|
|
|
|
|
|
|
|
|
|
def project do
|
|
|
|
|
[
|
|
|
|
|
app: :plausible,
|
2020-05-26 16:09:34 +03:00
|
|
|
|
version: System.get_env("APP_VERSION", "0.0.1"),
|
|
|
|
|
elixir: "~> 1.10",
|
|
|
|
|
elixirc_paths: elixirc_paths(Mix.env()),
|
|
|
|
|
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
|
2019-09-02 14:29:19 +03:00
|
|
|
|
start_permanent: Mix.env() == :prod,
|
|
|
|
|
aliases: aliases(),
|
2019-10-25 09:18:07 +03:00
|
|
|
|
deps: deps(),
|
2020-05-26 16:09:34 +03:00
|
|
|
|
test_coverage: [
|
|
|
|
|
tool: ExCoveralls
|
|
|
|
|
],
|
|
|
|
|
releases: [
|
|
|
|
|
plausible: [
|
|
|
|
|
include_executables_for: [:unix],
|
|
|
|
|
applications: [plausible: :permanent],
|
|
|
|
|
steps: [:assemble, :tar]
|
|
|
|
|
]
|
|
|
|
|
]
|
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, []},
|
2020-05-26 16:09:34 +03:00
|
|
|
|
extra_applications: [
|
|
|
|
|
:logger,
|
|
|
|
|
:sentry,
|
|
|
|
|
:runtime_tools,
|
|
|
|
|
:timex,
|
|
|
|
|
:ua_inspector,
|
|
|
|
|
:ref_inspector,
|
|
|
|
|
:bamboo,
|
2020-12-14 17:06:43 +03:00
|
|
|
|
:bamboo_smtp,
|
|
|
|
|
:appsignal
|
2020-05-26 16:09:34 +03:00
|
|
|
|
]
|
2019-09-02 14:29:19 +03:00
|
|
|
|
]
|
|
|
|
|
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
|
|
|
|
|
[
|
2020-11-27 17:11:07 +03:00
|
|
|
|
{:appsignal, "~> 2.0"},
|
|
|
|
|
{:appsignal_phoenix, "~> 2.0.0"},
|
2019-09-02 14:29:19 +03:00
|
|
|
|
{: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_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"},
|
2020-05-26 16:09:34 +03:00
|
|
|
|
# Used in paddle_api, can remove
|
|
|
|
|
{:poison, "~> 3.1"},
|
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"},
|
2020-01-13 16:16:35 +03:00
|
|
|
|
{:bamboo, "~> 1.3"},
|
2019-09-02 14:29:19 +03:00
|
|
|
|
{:bamboo_postmark, "~> 0.5"},
|
2020-05-26 16:09:34 +03:00
|
|
|
|
{:bamboo_smtp, "~> 2.1.0"},
|
2019-09-02 14:29:19 +03:00
|
|
|
|
{: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},
|
2020-02-26 11:54:21 +03:00
|
|
|
|
{:double, "~> 0.7.0", only: :test},
|
2020-05-26 16:09:34 +03:00
|
|
|
|
{:junit_formatter, "~> 3.1", only: [:test]},
|
2020-01-13 16:16:35 +03:00
|
|
|
|
{:php_serializer, "~> 0.9.0"},
|
2020-01-16 14:39:47 +03:00
|
|
|
|
{:csv, "~> 2.3"},
|
2020-01-29 12:29:11 +03:00
|
|
|
|
{:oauther, "~> 1.1"},
|
2020-05-07 14:28:41 +03:00
|
|
|
|
{:nanoid, "~> 2.0.2"},
|
2020-05-21 13:03:39 +03:00
|
|
|
|
{:siphash, "~> 3.2"},
|
2020-06-02 13:37:38 +03:00
|
|
|
|
{:oban, "~> 1.2"},
|
2020-06-04 14:33:54 +03:00
|
|
|
|
{:sshex, "2.2.1"},
|
2020-06-12 09:51:45 +03:00
|
|
|
|
{:geolix, "~> 1.0"},
|
2020-09-17 16:36:01 +03:00
|
|
|
|
{:clickhouse_ecto, git: "https://github.com/plausible/clickhouse_ecto.git"},
|
2020-12-09 12:00:14 +03:00
|
|
|
|
{:geolix_adapter_mmdb2, "~> 0.5.0"},
|
|
|
|
|
{:mix_test_watch, "~> 1.0", only: :dev}
|
2019-09-02 14:29:19 +03:00
|
|
|
|
]
|
|
|
|
|
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"],
|
2020-09-17 16:36:01 +03:00
|
|
|
|
test: ["ecto.create --quiet", "ecto.migrate", "test", "clean_clickhouse"]
|
2019-09-02 14:29:19 +03:00
|
|
|
|
]
|
|
|
|
|
end
|
|
|
|
|
end
|