fediverse.space/backend/mix.exs

91 wiersze
2.4 KiB
Elixir
Czysty Zwykły widok Historia

2019-07-14 11:47:06 +00:00
defmodule Backend.MixProject do
use Mix.Project
def project do
[
app: :backend,
2019-08-31 18:55:34 +00:00
version: "2.8.2",
2019-07-14 11:47:06 +00:00
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env()),
2023-04-29 15:52:25 +00:00
compilers: [:phoenix] ++ Mix.compilers(),
2019-07-14 11:47:06 +00:00
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps()
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {Backend.Application, []},
2019-07-27 10:56:00 +00:00
extra_applications: [
:logger,
:runtime_tools,
:gollum,
:elasticsearch,
:appsignal,
:swoosh,
:gen_smtp
2019-07-27 10:56:00 +00:00
]
2019-07-14 11:47:06 +00: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
[
2023-04-29 15:52:25 +00:00
{:phoenix, "~> 1.6.0"},
{:phoenix_html, "~> 3.0"},
{:telemetry_metrics, "~> 0.6"},
{:telemetry_poller, "~> 0.5"},
{:phoenix_pubsub, "~> 2.1.1"},
{:phoenix_ecto, "~> 4.4.0"},
2019-07-14 11:47:06 +00:00
{:ecto_sql, "~> 3.0"},
{:postgrex, ">= 0.0.0"},
{:gettext, "~> 0.11"},
{:jason, "~> 1.0"},
{:plug_cowboy, "~> 2.1"},
2023-04-29 15:52:25 +00:00
{:httpoison, "~> 2.1", override: true},
2019-07-14 11:47:06 +00:00
{:timex, "~> 3.5"},
{:honeydew, "~> 1.5.0"},
{:quantum, "~> 3.3"},
2023-04-29 15:52:25 +00:00
{:corsica, "~> 1.3"},
2019-08-21 12:37:23 +00:00
{:sobelow, "~> 0.8", only: [:dev, :test]},
{:gollum, "~> 0.3.2"},
{:public_suffix, git: "https://github.com/axelson/publicsuffix-elixir"},
{:swoosh, "~> 1.0"},
2023-04-29 15:52:25 +00:00
{:gen_smtp, "~> 1.2"},
2019-07-27 10:13:42 +00:00
{:elasticsearch, "~> 1.0"},
2023-04-29 15:52:25 +00:00
{:appsignal_phoenix, "~> 2.3"},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:nebulex, "~> 2.4.2"},
2019-08-23 13:08:05 +00:00
{:hunter, "~> 0.5.1"},
2019-08-29 16:54:34 +00:00
{:scrivener_ecto, "~> 2.2"},
{:recase, "~> 0.7"},
2023-04-29 15:52:25 +00:00
{:ex_rated, "~> 2.1"},
2020-05-27 13:38:52 +00:00
{:html_sanitize_ex, "~> 1.4"}
2019-07-14 11:47:06 +00: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"],
test: ["ecto.create --quiet", "ecto.migrate", "test"]
]
end
end