memEx/lib/memex/application.ex

58 lines
1.5 KiB
Elixir
Raw Normal View History

2022-07-25 19:31:54 -04:00
defmodule Memex.Application do
2021-03-11 21:12:55 -05:00
# See https://hexdocs.pm/elixir/Application.html
# for more information on OTP Applications
@moduledoc false
use Application
2023-02-04 20:48:17 -05:00
alias Memex.ErrorReporter
2021-03-11 21:12:55 -05:00
2022-01-22 13:01:36 -05:00
@impl true
2021-03-11 21:12:55 -05:00
def start(_type, _args) do
children = [
# Start the Ecto repository
2022-07-25 19:31:54 -04:00
Memex.Repo,
2021-03-11 21:12:55 -05:00
# Start the Telemetry supervisor
2022-07-25 19:31:54 -04:00
MemexWeb.Telemetry,
2021-03-11 21:12:55 -05:00
# Start the PubSub system
2022-07-25 19:31:54 -04:00
{Phoenix.PubSub, name: Memex.PubSub},
2021-03-11 21:12:55 -05:00
# Start the Endpoint (http/https)
2022-07-25 19:31:54 -04:00
MemexWeb.Endpoint,
2022-02-25 22:12:55 -05:00
# Add Oban
2023-02-04 20:48:17 -05:00
{Oban, oban_config()},
Memex.Repo.Migrator
2022-07-25 19:31:54 -04:00
# Start a worker by calling: Memex.Worker.start_link(arg)
# {Memex.Worker, arg}
2021-03-11 21:12:55 -05:00
]
2023-02-04 20:48:17 -05:00
# Oban events logging https://hexdocs.pm/oban/Oban.html#module-reporting-errors
:ok =
:telemetry.attach_many(
"oban-logger",
[
[:oban, :job, :exception],
[:oban, :job, :start],
[:oban, :job, :stop]
],
&ErrorReporter.handle_event/4,
[]
)
2022-01-22 20:12:32 -05:00
2021-03-11 21:12:55 -05:00
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
2022-07-25 19:31:54 -04:00
opts = [strategy: :one_for_one, name: Memex.Supervisor]
2021-03-11 21:12:55 -05:00
Supervisor.start_link(children, opts)
end
# Tell Phoenix to update the endpoint configuration
# whenever the application is updated.
2022-01-22 13:01:36 -05:00
@impl true
2021-03-11 21:12:55 -05:00
def config_change(changed, _new, removed) do
2022-07-25 19:31:54 -04:00
MemexWeb.Endpoint.config_change(changed, removed)
2021-03-11 21:12:55 -05:00
:ok
end
2022-02-25 22:12:55 -05:00
defp oban_config do
2022-07-25 19:31:54 -04:00
Application.fetch_env!(:memex, Oban)
2022-02-25 22:12:55 -05:00
end
2021-03-11 21:12:55 -05:00
end