Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

150 lines
4.7KB

  1. defmodule Pleroma.Mixfile do
  2. use Mix.Project
  3. def project do
  4. [
  5. app: :pleroma,
  6. version: version("0.9.0"),
  7. elixir: "~> 1.7",
  8. elixirc_paths: elixirc_paths(Mix.env()),
  9. compilers: [:phoenix, :gettext] ++ Mix.compilers(),
  10. elixirc_options: [warnings_as_errors: true],
  11. start_permanent: Mix.env() == :prod,
  12. aliases: aliases(),
  13. deps: deps(),
  14. # Docs
  15. name: "Pleroma",
  16. source_url: "https://git.pleroma.social/pleroma/pleroma",
  17. source_url_pattern:
  18. "https://git.pleroma.social/pleroma/pleroma/blob/develop/%{path}#L%{line}",
  19. homepage_url: "https://pleroma.social/",
  20. docs: [
  21. logo: "priv/static/static/logo.png",
  22. extras: ["README.md", "docs/config.md", "docs/Pleroma-API.md", "docs/Admin-API.md"],
  23. main: "readme",
  24. output: "priv/static/doc"
  25. ]
  26. ]
  27. end
  28. # Configuration for the OTP application.
  29. #
  30. # Type `mix help compile.app` for more information.
  31. def application do
  32. [
  33. mod: {Pleroma.Application, []},
  34. extra_applications: [:logger, :runtime_tools, :comeonin],
  35. included_applications: [:ex_syslogger]
  36. ]
  37. end
  38. # Specifies which paths to compile per environment.
  39. defp elixirc_paths(:test), do: ["lib", "test/support"]
  40. defp elixirc_paths(_), do: ["lib"]
  41. # Specifies your project dependencies.
  42. #
  43. # Type `mix help deps` for examples and options.
  44. defp deps do
  45. [
  46. # Until Phoenix 1.4.1 is released
  47. {:phoenix, github: "phoenixframework/phoenix", branch: "v1.4"},
  48. {:plug_cowboy, "~> 1.0"},
  49. {:phoenix_pubsub, "~> 1.1"},
  50. {:phoenix_ecto, "~> 3.3"},
  51. {:postgrex, ">= 0.13.5"},
  52. {:gettext, "~> 0.15"},
  53. {:comeonin, "~> 4.1.1"},
  54. {:pbkdf2_elixir, "~> 0.12.3"},
  55. {:trailing_format_plug, "~> 0.0.7"},
  56. {:html_sanitize_ex, "~> 1.3.0"},
  57. {:html_entities, "~> 0.4"},
  58. {:phoenix_html, "~> 2.10"},
  59. {:calendar, "~> 0.17.4"},
  60. {:cachex, "~> 3.0.2"},
  61. {:httpoison, "~> 1.2.0"},
  62. {:tesla, "~> 1.2"},
  63. {:jason, "~> 1.0"},
  64. {:mogrify, "~> 0.6.1"},
  65. {:ex_aws, "~> 2.0"},
  66. {:ex_aws_s3, "~> 2.0"},
  67. {:earmark, "~> 1.3"},
  68. {:ex_machina, "~> 2.2", only: :test},
  69. {:credo, "~> 0.9.3", only: [:dev, :test]},
  70. {:mock, "~> 0.3.1", only: :test},
  71. {:crypt,
  72. git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
  73. {:cors_plug, "~> 1.5"},
  74. {:ex_doc, "~> 0.19", only: :dev, runtime: false},
  75. {:web_push_encryption, "~> 0.2.1"},
  76. {:swoosh, "~> 0.20"},
  77. {:gen_smtp, "~> 0.13"},
  78. {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
  79. {:floki, "~> 0.20.0"},
  80. {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"}
  81. ]
  82. end
  83. # Aliases are shortcuts or tasks specific to the current project.
  84. # For example, to create, migrate and run the seeds file at once:
  85. #
  86. # $ mix ecto.setup
  87. #
  88. # See the documentation for `Mix` for more info on aliases.
  89. defp aliases do
  90. [
  91. "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
  92. "ecto.reset": ["ecto.drop", "ecto.setup"],
  93. test: ["ecto.create --quiet", "ecto.migrate", "test"]
  94. ]
  95. end
  96. # Builds a version string made of:
  97. # * the application version
  98. # * a pre-release if ahead of the tag: the describe string (-count-commithash)
  99. # * build info:
  100. # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
  101. # * the mix environment if different than prod
  102. defp version(version) do
  103. {git_tag, git_pre_release} =
  104. with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
  105. tag = String.trim(tag),
  106. {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
  107. describe = String.trim(describe),
  108. ahead <- String.replace(describe, tag, "") do
  109. {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
  110. else
  111. _ -> {nil, nil}
  112. end
  113. if git_tag && version != git_tag do
  114. Mix.shell().error(
  115. "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
  116. )
  117. end
  118. build_name =
  119. cond do
  120. name = Application.get_env(:pleroma, :build_name) -> name
  121. name = System.get_env("PLEROMA_BUILD_NAME") -> name
  122. true -> nil
  123. end
  124. env_name = if Mix.env() != :prod, do: to_string(Mix.env())
  125. build =
  126. [build_name, env_name]
  127. |> Enum.filter(fn string -> string && string != "" end)
  128. |> Enum.join("-")
  129. |> (fn
  130. "" -> nil
  131. string -> "+" <> string
  132. end).()
  133. [version, git_pre_release, build]
  134. |> Enum.filter(fn string -> string && string != "" end)
  135. |> Enum.join()
  136. end
  137. end