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.
|
2023-11-20 14:52:20 +03:00
|
|
|
defp elixirc_paths(env) when env in [:test, :dev],
|
|
|
|
do: ["lib", "test/support", "extra/lib"]
|
|
|
|
|
|
|
|
defp elixirc_paths(env) when env in [:small_test],
|
|
|
|
do: ["lib", "test/support"]
|
|
|
|
|
|
|
|
defp elixirc_paths(:small), do: ["lib"]
|
|
|
|
defp elixirc_paths(_), do: ["lib", "extra/lib"]
|
2019-09-02 14:29:19 +03:00
|
|
|
|
|
|
|
# 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"},
|
2023-11-20 14:52:20 +03:00
|
|
|
{:bypass, "~> 2.1", only: [:dev, :test, :small_test]},
|
2022-09-07 15:17:57 +03:00
|
|
|
{: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},
|
2023-11-20 14:52:20 +03:00
|
|
|
{:double, "~> 0.8.0", only: [:test, :small_test]},
|
2023-07-11 13:43:53 +03:00
|
|
|
{:ecto, "~> 3.10.0"},
|
|
|
|
{:ecto_sql, "~> 3.10.0"},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:envy, "~> 1.1.1"},
|
2023-11-20 14:52:20 +03:00
|
|
|
{:ex_machina, "~> 2.3", only: [:dev, :test, :small, :small_test]},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:excoveralls, "~> 0.10", only: :test},
|
2023-10-24 11:33:48 +03:00
|
|
|
{:finch, "~> 0.16.0"},
|
2023-11-20 14:52:20 +03:00
|
|
|
{:floki, "~> 0.34.3", only: [:dev, :test, :small, :small_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-11-20 14:52:20 +03:00
|
|
|
{:kaffy, "~> 0.10.2", only: [:dev, :test, :staging, :prod]},
|
2022-09-07 15:17:57 +03:00
|
|
|
{:location, git: "https://github.com/plausible/location.git"},
|
2023-11-20 14:52:20 +03:00
|
|
|
{:mox, "~> 1.0", only: [:test, :small_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},
|
2023-11-20 14:52:20 +03:00
|
|
|
{:phoenix_live_reload, "~> 1.2", only: [:dev, :small]},
|
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},
|
2023-07-17 17:59:01 +03:00
|
|
|
{:ex_money, "~> 5.12"},
|
|
|
|
{:mjml_eex, "~> 0.9.0"},
|
2023-09-04 14:44:22 +03:00
|
|
|
{:mjml, "~> 1.5.0"},
|
2023-09-25 11:27:29 +03:00
|
|
|
{:heroicons, "~> 0.5.0"},
|
2023-10-02 12:18:49 +03:00
|
|
|
{:zxcvbn, git: "https://github.com/techgaun/zxcvbn-elixir.git"},
|
|
|
|
{:open_api_spex, "~> 3.18"},
|
2023-10-17 12:01:27 +03:00
|
|
|
{:joken, "~> 2.5"},
|
2023-11-01 17:27:29 +03:00
|
|
|
{:paginator, git: "https://github.com/duffelhq/paginator.git"},
|
2023-11-02 15:18:11 +03:00
|
|
|
{:scrivener_ecto, "~> 2.0"},
|
2023-11-20 14:52:20 +03:00
|
|
|
{:esbuild, "~> 0.7", runtime: Mix.env() in [:dev, :small]},
|
|
|
|
{:tailwind, "~> 0.2.0", runtime: Mix.env() in [:dev, :small]},
|
2023-11-13 16:53:11 +03:00
|
|
|
{:ex_json_logger, "~> 1.3.0"}
|
2019-09-02 14:29:19 +03:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
defp aliases do
|
|
|
|
[
|
2023-11-01 17:27:29 +03:00
|
|
|
setup: ["deps.get", "ecto.setup", "assets.setup", "assets.build"],
|
2019-09-02 14:29:19 +03:00
|
|
|
"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"],
|
2023-11-01 17:27:29 +03:00
|
|
|
sentry_recompile: ["compile", "deps.compile sentry --force"],
|
|
|
|
"assets.setup": ["tailwind.install --if-missing", "esbuild.install --if-missing"],
|
2023-11-20 14:52:20 +03:00
|
|
|
"assets.build": [
|
|
|
|
"tailwind default",
|
|
|
|
"esbuild default"
|
|
|
|
],
|
2023-11-01 17:27:29 +03:00
|
|
|
"assets.deploy": ["tailwind default --minify", "esbuild default --minify", "phx.digest"]
|
2019-09-02 14:29:19 +03:00
|
|
|
]
|
|
|
|
end
|
2022-09-16 10:56:35 +03:00
|
|
|
|
|
|
|
defp docs do
|
|
|
|
[
|
|
|
|
main: "readme",
|
2023-11-01 17:36:06 +03:00
|
|
|
logo: "priv/static/images/icon/plausible_favicon.png",
|
2022-09-16 10:56:35 +03:00
|
|
|
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
|