cannery/lib/cannery/application.ex

58 lines
1.5 KiB
Elixir
Raw Normal View History

2023-02-25 15:47:37 -05:00
defmodule Cannery.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-25 15:47:37 -05:00
alias Cannery.Logger
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
2023-02-25 15:47:37 -05:00
Cannery.Repo,
2021-03-11 21:12:55 -05:00
# Start the Telemetry supervisor
2023-02-25 15:47:37 -05:00
CanneryWeb.Telemetry,
2021-03-11 21:12:55 -05:00
# Start the PubSub system
2023-02-25 15:47:37 -05:00
{Phoenix.PubSub, name: Cannery.PubSub},
2021-03-11 21:12:55 -05:00
# Start the Endpoint (http/https)
2023-02-25 15:47:37 -05:00
CanneryWeb.Endpoint,
2022-02-25 22:12:55 -05:00
# Add Oban
2023-02-04 20:47:47 -05:00
{Oban, oban_config()},
2023-02-25 15:47:37 -05:00
Cannery.Repo.Migrator
# Start a worker by calling: Cannery.Worker.start_link(arg)
# {Cannery.Worker, arg}
2021-03-11 21:12:55 -05:00
]
2023-02-04 20:47:47 -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:14:20 -05:00
&Logger.handle_event/4,
2023-02-04 20:47:47 -05:00
[]
)
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
2023-02-25 15:47:37 -05:00
opts = [strategy: :one_for_one, name: Cannery.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
2023-02-25 15:47:37 -05:00
CanneryWeb.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
2023-02-25 15:47:37 -05:00
Application.fetch_env!(:cannery, Oban)
2022-02-25 22:12:55 -05:00
end
2021-03-11 21:12:55 -05:00
end