forked from beyond-all-reason/teiserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
158 lines (146 loc) · 4.69 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
defmodule Teiserver.MixProject do
use Mix.Project
def project do
[
app: :teiserver,
version: "0.1.0",
elixir: ">= 1.12.2",
description: description(),
package: package(),
dialyzer: dialyzer(),
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
defp description do
"""
Middleware server for online gaming
"""
end
# Run "mix help compile.app" to learn about applications.
def application do
# get that with mix app.tree nostrum
nostrum_extras = [:certifi, :gun, :inets, :jason, :mime, :kcl]
[
mod: {Teiserver.Application, []},
included_applications: [:nostrum],
extra_applications: [:logger, :runtime_tools, :os_mon, :iex] ++ nostrum_extras
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(:dev), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# Default phoenix deps
{:phoenix, "~> 1.7"},
{:phoenix_ecto, "~> 4.4"},
{:ecto_sql, "~> 3.10"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 3.3"},
{:phoenix_live_reload, "~> 1.4", only: :dev},
{:phoenix_live_view, "~> 0.19"},
{:floki, ">= 0.34.0", only: :test},
{:phoenix_live_dashboard, "~> 0.8"},
{:esbuild, "~> 0.5", runtime: Mix.env() == :dev},
{:bamboo, "~> 2.1"},
{:bamboo_smtp, "~> 4.0"},
{:telemetry_metrics, "~> 0.6"},
{:telemetry_poller, "~> 1.0"},
{:gettext, "~> 0.20"},
{:jason, "~> 1.2"},
{:plug_cowboy, "~> 2.5"},
# Temporary deps while we transition away from views
{:phoenix_view, "~> 2.0"},
# Extra deps
{:ecto_psql_extras, "~> 0.7"},
{:logger_file_backend, "~> 0.0.10"},
{:timex, "~> 3.7.5"},
{:breadcrumble, "~> 1.0.0"},
{:guardian, "~> 2.1"},
{:argon2_elixir, "~> 3.0"},
{:bodyguard, "~> 2.4"},
{:human_time, "~> 0.3.0"},
{:oban, "~> 2.15"},
{:parallel_stream, "~> 1.1.0"},
{:con_cache, "~> 1.0"},
{:phoenix_pubsub, "~> 2.0"},
{:elixir_uuid, "~> 1.2"},
{:excoveralls, "~> 0.15.3", only: :test, runtime: false},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.1", only: [:dev, :test], runtime: false},
{:dart_sass, "~> 0.6", only: [:dev]},
{:libcluster, "~> 3.3"},
{:tzdata, "~> 1.1.2"},
{:ex_ulid, "~> 0.1.0"},
{:combination, "~> 0.0.3"},
{:mock, "~> 0.3.0", only: :test},
# Teiserver libs
{:openskill,
git: "https://github.com/beyond-all-reason/openskill.ex.git", branch: "master"},
{:cowboy, "~> 2.9"},
{:statistics, "~> 0.6.2"},
{:csv, "~> 2.4"},
{:earmark, "~> 1.4"},
{:ranch, "~> 1.8"},
{:horde, "~> 0.8"},
{:etop, "~> 0.7.0"},
{:cowlib, "~> 2.11", hex: :remedy_cowlib, override: true},
{:json_xema, "~> 0.3"},
{:nostrum, "~> 0.8.0"},
{:websocket_sync_client,
git: "https://github.com/geekingfrog/websocket_sync_client.git",
ref: "45e15115ef5f44111196d78198faabf85795795d",
only: [:dev, :test]}
]
end
# Aliases are shortcuts or tasks specific to the current project.
# For example, to install project dependencies and perform other setup tasks, run:
#
# $ mix setup
#
# See the documentation for `Mix` for more info on aliases.
defp aliases do
[
setup: ["deps.get", "ecto.setup"],
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"],
"assets.deploy": [
"esbuild default --minify",
"sass dark --no-source-map --style=compressed",
"sass light --no-source-map --style=compressed",
"phx.digest"
]
]
end
defp dialyzer do
[
plt_core_path: "priv/plts",
plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
plt_add_apps: [:ex_unit, :mix, :nostrum]
]
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "license.md"],
maintainers: ["Teifion Jordan"],
licenses: ["MIT"],
links: %{
Changelog: "https://github.com/beyond-all-reason/teiserver/blob/master/changelog.md",
GitHub: "https://github.com/beyond-all-reason/teiserver"
}
]
end
end