Current section

Files

Jump to
hangman_liveview_client lib hangman_liveview_client application.ex
Raw

lib/hangman_liveview_client/application.ex

defmodule Hangman.LiveView.Client.Application do
# See https://hexdocs.pm/elixir/Application.html
# for more information on OTP Applications
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = [
# Start the Telemetry supervisor
Hangman.LiveView.ClientWeb.Telemetry,
# Start the PubSub system
{Phoenix.PubSub, name: Hangman.LiveView.Client.PubSub},
# Start the Endpoint (http/https)
Hangman.LiveView.ClientWeb.Endpoint
# Start a worker by calling:
# Hangman.LiveView.Client.Worker.start_link(arg)
# {Hangman.LiveView.Client.Worker, arg}
]
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: Hangman.LiveView.Client.Supervisor]
Supervisor.start_link(children, opts)
end
# Tell Phoenix to update the endpoint configuration
# whenever the application is updated.
@impl true
def config_change(changed, _new, removed) do
Hangman.LiveView.ClientWeb.Endpoint.config_change(changed, removed)
:ok
end
end