Skip to content
Snippets Groups Projects
mix.exs 1.9 KiB
Newer Older
  • Learn to ignore specific revisions
  • lain's avatar
    lain committed
    defmodule Pleroma.Mixfile do
      use Mix.Project
    
      def project do
    
    lain's avatar
    lain committed
        [
          app: :pleroma,
          version: "0.9.0",
          elixir: "~> 1.4",
          elixirc_paths: elixirc_paths(Mix.env()),
          compilers: [:phoenix, :gettext] ++ Mix.compilers(),
          start_permanent: Mix.env() == :prod,
          aliases: aliases(),
          deps: deps()
        ]
    
    lain's avatar
    lain committed
      end
    
      # Configuration for the OTP application.
      #
      # Type `mix help compile.app` for more information.
      def application do
    
    lain's avatar
    lain committed
        [mod: {Pleroma.Application, []}, extra_applications: [:logger, :runtime_tools, :comeonin]]
    
    lain's avatar
    lain committed
      end
    
      # Specifies which paths to compile per environment.
      defp elixirc_paths(:test), do: ["lib", "test/support"]
    
    lain's avatar
    lain committed
      defp elixirc_paths(_), do: ["lib"]
    
    lain's avatar
    lain committed
    
      # Specifies your project dependencies.
      #
      # Type `mix help deps` for examples and options.
      defp deps do
    
    lain's avatar
    lain committed
        [
          {:phoenix, "~> 1.3.0"},
          {:phoenix_pubsub, "~> 1.0"},
          {:phoenix_ecto, "~> 3.2"},
          {:postgrex, ">= 0.0.0"},
          {:gettext, "~> 0.11"},
          {:cowboy, "~> 1.0", override: true},
    
          {:comeonin, "~> 4.0"},
          {:pbkdf2_elixir, "~> 0.12"},
    
    lain's avatar
    lain committed
          {:trailing_format_plug, "~> 0.0.5"},
          {:html_sanitize_ex, "~> 1.3.0-rc1"},
          {:phoenix_html, "~> 2.10"},
          {:calendar, "~> 0.16.1"},
    
          {:cachex, "~> 3.0"},
    
          {:httpoison, "~> 1.1.0"},
    
    lain's avatar
    lain committed
          {:jason, "~> 1.0"},
          {:ex_machina, "~> 2.0", only: :test},
    
    lain's avatar
    lain committed
          {:credo, "~> 0.7", only: [:dev, :test]},
          {:mock, "~> 0.3.0", only: :test}
    
    lain's avatar
    lain committed
        ]
    
    lain's avatar
    lain committed
      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
    
    lain's avatar
    lain committed
        [
          "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
          "ecto.reset": ["ecto.drop", "ecto.setup"],
          test: ["ecto.create --quiet", "ecto.migrate", "test"]
        ]
    
    lain's avatar
    lain committed
      end
    end