cannery/lib/cannery/application.ex

58 lines
1.5 KiB
Elixir
Raw Normal View History

2021-03-11 21:12:55 -05:00
defmodule Cannery.Application do
# See https://hexdocs.pm/elixir/Application.html
# for more information on OTP Applications
@moduledoc false
use Application
2023-02-07 00:18:16 -05:00
alias Cannery.Logger
2021-03-11 21:12:55 -05:00
2022-01-21 20:36:25 -05:00
@impl true
2021-03-11 21:12:55 -05:00
def start(_type, _args) do
children = [
# Start the Ecto repository
Cannery.Repo,
# Start the Telemetry supervisor
CanneryWeb.Telemetry,
# Start the PubSub system
{Phoenix.PubSub, name: Cannery.PubSub},
# Start the Endpoint (http/https)
2022-02-08 19:59:23 -05:00
CanneryWeb.Endpoint,
# Add Oban
2023-02-04 20:48:14 -05:00
{Oban, oban_config()},
Cannery.Repo.Migrator
2021-03-11 21:12:55 -05:00
# Start a worker by calling: Cannery.Worker.start_link(arg)
2022-01-22 20:16:19 -05:00
# {Cannery.Worker, arg}
2021-03-11 21:12:55 -05:00
]
2023-02-04 20:48:14 -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]
],
2023-02-07 00:18:16 -05:00
&Logger.handle_event/4,
2023-02-04 20:48:14 -05:00
[]
)
2022-01-22 20:16:19 -05:00
2021-03-11 21:12:55 -05:00
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: Cannery.Supervisor]
Supervisor.start_link(children, opts)
end
# Tell Phoenix to update the endpoint configuration
# whenever the application is updated.
2022-01-21 20:36:25 -05:00
@impl true
2021-03-11 21:12:55 -05:00
def config_change(changed, _new, removed) do
CanneryWeb.Endpoint.config_change(changed, removed)
:ok
end
2022-02-08 19:59:23 -05:00
2022-02-08 22:12:22 -05:00
defp oban_config do
2022-02-08 19:59:23 -05:00
Application.fetch_env!(:cannery, Oban)
end
2021-03-11 21:12:55 -05:00
end