2018-10-11 15:37:39 +00:00
|
|
|
defmodule Mobilizon.Mixfile do
|
2017-12-08 08:58:14 +00:00
|
|
|
use Mix.Project
|
|
|
|
|
|
|
|
def project do
|
|
|
|
[
|
2018-10-11 15:37:39 +00:00
|
|
|
app: :mobilizon,
|
2017-12-08 08:58:14 +00:00
|
|
|
version: "0.0.1",
|
|
|
|
elixir: "~> 1.4",
|
2018-07-25 14:42:04 +00:00
|
|
|
elixirc_paths: elixirc_paths(Mix.env()),
|
|
|
|
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
|
|
|
|
start_permanent: Mix.env() == :prod,
|
2017-12-08 08:58:14 +00:00
|
|
|
aliases: aliases(),
|
2018-01-13 23:56:26 +00:00
|
|
|
deps: deps(),
|
|
|
|
test_coverage: [tool: ExCoveralls],
|
2018-07-25 14:42:04 +00:00
|
|
|
preferred_cli_env: [
|
|
|
|
coveralls: :test,
|
|
|
|
"coveralls.detail": :test,
|
|
|
|
"coveralls.post": :test,
|
|
|
|
"coveralls.html": :test
|
|
|
|
],
|
2018-10-11 15:37:39 +00:00
|
|
|
name: "Mobilizon",
|
|
|
|
source_url: "https://framagit.org/tcit/mobilizon",
|
|
|
|
homepage_url: "https://framagit.org/tcit/mobilizon",
|
|
|
|
docs: [main: "Mobilizon"]
|
2017-12-08 08:58:14 +00:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Configuration for the OTP application.
|
|
|
|
#
|
|
|
|
# Type `mix help compile.app` for more information.
|
|
|
|
def application do
|
|
|
|
[
|
2018-10-11 15:37:39 +00:00
|
|
|
mod: {Mobilizon.Application, []},
|
2018-07-09 12:19:24 +00:00
|
|
|
extra_applications: [:logger, :runtime_tools, :guardian, :bamboo, :geolix]
|
2017-12-08 08:58:14 +00:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Specifies which paths to compile per environment.
|
|
|
|
defp elixirc_paths(:test), do: ["lib", "test/support"]
|
2018-07-27 08:45:35 +00:00
|
|
|
defp elixirc_paths(:dev), do: ["lib", "test/support/factory.ex"]
|
2018-07-25 14:42:04 +00:00
|
|
|
defp elixirc_paths(_), do: ["lib"]
|
2017-12-08 08:58:14 +00:00
|
|
|
|
|
|
|
# Specifies your project dependencies.
|
|
|
|
#
|
|
|
|
# Type `mix help deps` for examples and options.
|
|
|
|
defp deps do
|
|
|
|
[
|
|
|
|
{:phoenix, "~> 1.3.0"},
|
|
|
|
{:phoenix_pubsub, "~> 1.0"},
|
|
|
|
{:phoenix_ecto, "~> 3.2"},
|
|
|
|
{:postgrex, ">= 0.0.0"},
|
|
|
|
{:phoenix_html, "~> 2.10"},
|
|
|
|
{:gettext, "~> 0.11"},
|
2018-08-24 12:09:21 +00:00
|
|
|
{:cowboy, "~> 1.0"},
|
2017-12-09 13:58:37 +00:00
|
|
|
{:guardian, "~> 1.0"},
|
2018-01-13 22:33:03 +00:00
|
|
|
{:guardian_db, "~> 1.0"},
|
2017-12-09 13:58:37 +00:00
|
|
|
{:comeonin, "~> 4.0"},
|
2018-01-09 16:52:26 +00:00
|
|
|
{:argon2_elixir, "~> 1.2"},
|
|
|
|
{:cors_plug, "~> 1.2"},
|
2018-01-13 22:33:03 +00:00
|
|
|
{:ecto_autoslug_field, "~> 0.3"},
|
|
|
|
{:rsa_ex, "~> 0.1"},
|
2018-08-24 10:31:41 +00:00
|
|
|
{:geo, "~> 3.0"},
|
|
|
|
{:geo_postgis, "~> 2.0"},
|
2018-01-13 22:33:03 +00:00
|
|
|
{:timex, "~> 3.0"},
|
|
|
|
{:timex_ecto, "~> 3.0"},
|
2018-01-26 10:02:11 +00:00
|
|
|
{:icalendar, "~> 0.6"},
|
|
|
|
{:exgravatar, "~> 2.0.1"},
|
|
|
|
{:httpoison, "~> 1.0"},
|
2018-05-17 09:32:23 +00:00
|
|
|
{:json_ld, "~> 0.2"},
|
|
|
|
{:jason, "~> 1.0"},
|
|
|
|
{:ex_crypto, "~> 0.9.0"},
|
|
|
|
{:http_sign, "~> 0.1.1"},
|
2018-05-18 07:56:21 +00:00
|
|
|
{:ecto_enum, "~> 1.0"},
|
2018-08-24 10:31:41 +00:00
|
|
|
{:ex_ical, "~> 0.2"},
|
2018-07-04 12:29:17 +00:00
|
|
|
{:bamboo, "~> 1.0"},
|
|
|
|
{:bamboo_smtp, "~> 1.5.0"},
|
2018-07-09 12:19:24 +00:00
|
|
|
{:geolix, "~> 0.16"},
|
2018-11-06 09:30:27 +00:00
|
|
|
{:absinthe, "~> 1.4.0"},
|
|
|
|
{:absinthe_phoenix, "~> 1.4.0"},
|
|
|
|
{:absinthe_plug, "~> 1.4.0"},
|
|
|
|
{:poison, "~> 3.1"},
|
|
|
|
{:absinthe_ecto, "~> 0.1.3"},
|
|
|
|
{:dataloader, "~> 1.0"},
|
|
|
|
{:arc, "~> 0.11.0"},
|
|
|
|
{:arc_ecto, "~> 0.11.0"},
|
|
|
|
{:email_checker, "~> 0.1.2"},
|
2018-01-26 10:02:11 +00:00
|
|
|
# Dev and test dependencies
|
|
|
|
{:phoenix_live_reload, "~> 1.0", only: :dev},
|
2018-07-25 14:42:04 +00:00
|
|
|
{:ex_machina, "~> 2.2", only: [:dev, :test]},
|
2018-01-13 23:56:26 +00:00
|
|
|
{:excoveralls, "~> 0.8", only: :test},
|
2018-01-15 10:41:47 +00:00
|
|
|
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
|
|
|
|
{:mix_test_watch, "~> 0.5", only: :dev, runtime: false},
|
|
|
|
{:ex_unit_notifier, "~> 0.1", only: :test}
|
2017-12-08 08:58:14 +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"],
|
2018-07-25 14:42:04 +00:00
|
|
|
test: ["ecto.create --quiet", "ecto.migrate", "test"]
|
2017-12-08 08:58:14 +00:00
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|