2019-09-02 14:29:19 +03:00
|
|
|
defmodule Plausible.MixProject do
|
|
|
|
use Mix.Project
|
|
|
|
|
|
|
|
def project do
|
|
|
|
[
|
2022-09-16 10:56:35 +03:00
|
|
|
name: "Plausible",
|
|
|
|
source_url: "https://github.com/plausible/analytics",
|
|
|
|
docs: docs(),
|
2019-09-02 14:29:19 +03:00
|
|
|
app: :plausible,
|
2020-05-26 16:09:34 +03:00
|
|
|
version: System.get_env("APP_VERSION", "0.0.1"),
|
2023-03-20 13:15:08 +03:00
|
|
|
elixir: "~> 1.14",
|
2020-05-26 16:09:34 +03:00
|
|
|
elixirc_paths: elixirc_paths(Mix.env()),
|
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],
|
2022-03-21 14:05:34 +03:00
|
|
|
applications: [plausible: :permanent],
|
2020-05-26 16:09:34 +03:00
|
|
|
steps: [:assemble, :tar]
|
|
|
|
]
|
2021-01-07 16:16:04 +03:00
|
|
|
],
|
|
|
|
dialyzer: [
|
|
|
|
plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
|
|
|
|
plt_add_apps: [:mix, :ex_unit]
|
2020-05-26 16:09:34 +03:00
|
|
|
]
|
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,
|
2022-07-06 17:47:31 +03:00
|
|
|
:runtime_tools,
|
2022-10-18 18:11:30 +03:00
|
|
|
:tls_certificate_check,
|
|
|
|
:opentelemetry_exporter
|
2020-05-26 16:09:34 +03:00
|
|
|
]
|
2019-09-02 14:29:19 +03:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Specifies which paths to compile per environment.
|
2022-11-18 03:46:42 +03:00
|
|
|
defp elixirc_paths(env) when env in [:test, :dev], do: ["lib", "test/support"]
|
2019-09-02 14:29:19 +03:00
|
|
|
defp elixirc_paths(_), do: ["lib"]
|
|
|
|
|
|
|
|
# Specifies your project dependencies.
|
|
|
|
#
|
|
|
|
# Type `mix help deps` for examples and options.
|
|
|
|
defp deps do
|
|
|
|
[
|
2022-09-07 15:17:57 +03:00
|
|
|
{:bamboo, "~> 2.2"},
|
|
|
|
{:bamboo_phoenix, "~> 1.0.0"},
|
2022-11-29 18:48:44 +03:00
|
|
|
{:bamboo_postmark, git: "https://github.com/plausible/bamboo_postmark.git", branch: "main"},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:bamboo_smtp, "~> 4.1"},
|
2023-04-05 13:00:13 +03:00
|
|
|
{:bcrypt_elixir, "~> 3.0"},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:bypass, "~> 2.1", only: [:dev, :test]},
|
|
|
|
{:cachex, "~> 3.4"},
|
2023-06-12 20:29:17 +03:00
|
|
|
{:ecto_ch, "~> 0.1.10"},
|
2021-05-18 11:36:12 +03:00
|
|
|
{:combination, "~> 0.0.3"},
|
2022-04-08 11:05:21 +03:00
|
|
|
{:connection, "~> 1.1", override: true},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:cors_plug, "~> 3.0"},
|
|
|
|
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
|
|
|
|
{:csv, "~> 2.3"},
|
|
|
|
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
|
|
|
|
{:double, "~> 0.8.0", only: :test},
|
2023-05-09 11:51:35 +03:00
|
|
|
{:ecto, "~> 3.9.0"},
|
|
|
|
{:ecto_sql, "~> 3.9.0"},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:envy, "~> 1.1.1"},
|
2022-11-18 03:46:42 +03:00
|
|
|
{:ex_machina, "~> 2.3", only: [:dev, :test]},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:excoveralls, "~> 0.10", only: :test},
|
|
|
|
{:exvcr, "~> 0.11", only: :test},
|
2023-01-05 11:38:52 +03:00
|
|
|
{:finch, "~> 0.14.0", override: true},
|
2023-06-01 16:26:23 +03:00
|
|
|
{:floki, "~> 0.32.0", only: [:dev, :test]},
|
2022-09-21 01:10:45 +03:00
|
|
|
{:fun_with_flags, "~> 1.9.0"},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:fun_with_flags_ui, "~> 0.8"},
|
2023-01-17 18:05:09 +03:00
|
|
|
{:locus, "~> 2.3"},
|
2023-02-27 17:23:05 +03:00
|
|
|
{:gen_cycle, "~> 1.0.4"},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:hackney, "~> 1.8"},
|
|
|
|
{:hammer, "~> 6.0"},
|
|
|
|
{:httpoison, "~> 1.4"},
|
2022-04-08 08:56:09 +03:00
|
|
|
{:jason, "~> 1.3"},
|
2023-06-01 16:26:23 +03:00
|
|
|
{:kaffy, "~> 0.9.4"},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:location, git: "https://github.com/plausible/location.git"},
|
2022-09-23 13:22:43 +03:00
|
|
|
{:mox, "~> 1.0", only: :test},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:nanoid, "~> 2.0.2"},
|
|
|
|
{:oauther, "~> 1.3"},
|
2023-05-09 11:51:35 +03:00
|
|
|
{:oban, "~> 2.12.0"},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:observer_cli, "~> 1.7"},
|
2022-10-18 18:11:30 +03:00
|
|
|
{:opentelemetry, "~> 1.1"},
|
|
|
|
{:opentelemetry_api, "~> 1.1"},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:opentelemetry_ecto, "~> 1.0.0"},
|
2022-10-18 18:11:30 +03:00
|
|
|
{:opentelemetry_exporter, "~> 1.2.0"},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:opentelemetry_phoenix, "~> 1.0"},
|
2022-10-18 18:11:30 +03:00
|
|
|
{:opentelemetry_oban, "~> 0.2.0-rc.5"},
|
2023-05-09 11:51:35 +03:00
|
|
|
{:phoenix, "~> 1.7.0"},
|
|
|
|
{:phoenix_view, "~> 2.0"},
|
2019-09-02 14:29:19 +03:00
|
|
|
{:phoenix_ecto, "~> 4.0"},
|
2023-06-01 16:26:23 +03:00
|
|
|
{:phoenix_html, "~> 3.3", override: true},
|
2019-09-02 14:29:19 +03:00
|
|
|
{:phoenix_live_reload, "~> 1.2", only: :dev},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:phoenix_pagination, "~> 0.7.0"},
|
2021-01-13 11:31:16 +03:00
|
|
|
{:phoenix_pubsub, "~> 2.0"},
|
2023-06-01 16:26:23 +03:00
|
|
|
{:phoenix_live_view, "~> 0.18"},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:php_serializer, "~> 2.0"},
|
|
|
|
{:plug, "~> 1.13", override: true},
|
2021-03-30 15:51:05 +03:00
|
|
|
{:plug_cowboy, "~> 2.3"},
|
2023-05-09 11:51:35 +03:00
|
|
|
{:prom_ex, "~> 1.8"},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:public_suffix, git: "https://github.com/axelson/publicsuffix-elixir"},
|
2019-12-04 07:59:58 +03:00
|
|
|
{:ref_inspector, "~> 1.3"},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:referrer_blocklist, git: "https://github.com/plausible/referrer-blocklist.git"},
|
2021-03-30 15:51:05 +03:00
|
|
|
{:sentry, "~> 8.0"},
|
2020-05-21 13:03:39 +03:00
|
|
|
{:siphash, "~> 3.2"},
|
2022-09-14 15:58:42 +03:00
|
|
|
{:timex, "~> 3.7"},
|
2022-09-16 10:56:35 +03:00
|
|
|
{:ua_inspector, "~> 3.0"},
|
2023-05-23 13:08:09 +03:00
|
|
|
{:ex_doc, "~> 0.28", only: :dev, runtime: false},
|
|
|
|
{:ex_money, "~> 5.12"}
|
2019-09-02 14:29:19 +03:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
defp aliases do
|
|
|
|
[
|
|
|
|
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
|
|
|
|
"ecto.reset": ["ecto.drop", "ecto.setup"],
|
2021-04-23 11:56:41 +03:00
|
|
|
test: ["ecto.create --quiet", "ecto.migrate", "test", "clean_clickhouse"],
|
|
|
|
sentry_recompile: ["compile", "deps.compile sentry --force"]
|
2019-09-02 14:29:19 +03:00
|
|
|
]
|
|
|
|
end
|
2022-09-16 10:56:35 +03:00
|
|
|
|
|
|
|
defp docs do
|
|
|
|
[
|
|
|
|
main: "readme",
|
|
|
|
logo: "assets/static/images/icon/plausible_favicon.png",
|
|
|
|
extras:
|
|
|
|
Path.wildcard("guides/**/*.md") ++
|
|
|
|
[
|
2022-09-20 11:46:28 +03:00
|
|
|
"README.md": [filename: "readme", title: "Introduction"],
|
|
|
|
"CONTRIBUTING.md": [filename: "contributing", title: "Contributing"]
|
2022-09-16 10:56:35 +03:00
|
|
|
],
|
|
|
|
groups_for_extras: [
|
|
|
|
Features: Path.wildcard("guides/features/*.md")
|
2022-09-20 15:37:18 +03:00
|
|
|
],
|
|
|
|
before_closing_body_tag: fn
|
|
|
|
:html ->
|
|
|
|
"""
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
|
|
|
|
<script>mermaid.initialize({startOnLoad: true})</script>
|
|
|
|
"""
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
""
|
|
|
|
end
|
2022-09-16 10:56:35 +03:00
|
|
|
]
|
|
|
|
end
|
2019-09-02 14:29:19 +03:00
|
|
|
end
|