-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
115 lines (103 loc) · 2.95 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
defmodule Tower.MixProject do
use Mix.Project
@description "Flexible error tracking and reporting in Elixir"
@source_url "https://github.com/mimiquate/tower"
@version "0.6.3"
def project do
[
app: :tower,
description: @description,
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps(),
package: package(),
dialyzer: [
plt_add_apps: [:mix],
plt_core_path: "plts/core",
plt_local_path: "plts/local"
],
# Docs
name: "Tower",
source_url: @source_url,
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :inets],
env: [
reporters: [Tower.EphemeralReporter],
log_level: :critical,
ignored_exceptions: []
],
mod: {Tower.Application, []}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:uniq, "~> 0.6.0"},
{:telemetry, "~> 1.1"},
# Dev
{:ex_doc, "~> 0.34.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.4", only: :dev, runtime: false},
# Test
{:assert_eventually, "~> 1.0", only: :test},
{:plug_cowboy, "~> 2.7", only: :test},
{:bandit, "~> 1.5", only: :test},
{:phoenix, "~> 1.7", only: :test},
{:phoenix_html, "~> 4.1", only: :test},
{:oban, "~> 2.18", only: :test},
{:ecto_sqlite3, "~> 0.17.0", only: :test}
]
end
defp package do
[
licenses: ["Apache-2.0"],
links: %{
"GitHub" => @source_url
}
]
end
defp docs do
[
main: "Tower",
extras: [
"CHANGELOG.md": [title: "Changelog"]
],
before_closing_body_tag: &before_closing_body_tag/1
]
end
defp before_closing_body_tag(:html) do
"""
<script src="https://cdn.jsdelivr.net/npm/mermaid@11.0.2/dist/mermaid.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
mermaid.initialize({
startOnLoad: false,
theme: document.body.className.includes("dark") ? "dark" : "default"
});
let id = 0;
for (const codeEl of document.querySelectorAll("pre code.mermaid")) {
const preEl = codeEl.parentElement;
const graphDefinition = codeEl.textContent;
const graphEl = document.createElement("div");
const graphId = "mermaid-graph-" + id++;
mermaid.render(graphId, graphDefinition).then(({svg, bindFunctions}) => {
graphEl.innerHTML = svg;
bindFunctions?.(graphEl);
preEl.insertAdjacentElement("afterend", graphEl);
preEl.remove();
});
}
});
</script>
"""
end
defp before_closing_body_tag(_), do: ""
end