1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Application do
10 @version Mix.Project.config()[:version]
12 def version, do: @version
13 def named_version(), do: @name <> " " <> @version
16 info = "#{Pleroma.Web.base_url()} <#{Pleroma.Config.get([:instance, :email], "")}>"
17 named_version() <> "; " <> info
20 # See http://elixir-lang.org/docs/stable/elixir/Application.html
21 # for more information on OTP Applications
22 def start(_type, _args) do
25 # Define workers and child supervisors to be supervised
28 # Start the Ecto repository
29 supervisor(Pleroma.Repo, []),
30 worker(Pleroma.Emoji, []),
31 worker(Pleroma.Captcha, []),
37 ttl_interval: :timer.seconds(Pleroma.Config.get!([Pleroma.Captcha, :seconds_valid]))
40 id: :cachex_used_captcha_cache
83 default: :timer.seconds(6 * 60 * 60),
84 interval: :timer.seconds(60)
91 worker(Pleroma.Web.Federator.RetryQueue, []),
92 worker(Pleroma.Web.Federator, []),
93 worker(Pleroma.Stats, []),
94 worker(Pleroma.Web.Push, [])
99 # Start the endpoint when the application starts
100 supervisor(Pleroma.Web.Endpoint, []),
101 worker(Pleroma.Gopher.Server, [])
104 # See http://elixir-lang.org/docs/stable/elixir/Supervisor.html
105 # for other strategies and supported options
106 opts = [strategy: :one_for_one, name: Pleroma.Supervisor]
107 Supervisor.start_link(children, opts)
110 if Mix.env() == :test do
111 defp streamer_child(), do: []
112 defp chat_child(), do: []
114 defp streamer_child() do
115 [worker(Pleroma.Web.Streamer, [])]
119 if Pleroma.Config.get([:chat, :enabled]) do
120 [worker(Pleroma.Web.ChatChannel.ChatChannelState, [])]