b47fcdffcb
Reviewed-on: #3
37 lines
1.2 KiB
Elixir
37 lines
1.2 KiB
Elixir
defmodule Chesstrainer.Application do
|
|
# See https://elixir.hexdocs.pm/Application.html
|
|
# for more information on OTP Applications
|
|
@moduledoc false
|
|
|
|
use Application
|
|
|
|
@impl true
|
|
def start(_type, _args) do
|
|
children = [
|
|
ChesstrainerWeb.Telemetry,
|
|
Chesstrainer.Repo,
|
|
{DNSCluster, query: Application.get_env(:chesstrainer, :dns_cluster_query) || :ignore},
|
|
{Phoenix.PubSub, name: Chesstrainer.PubSub},
|
|
# Start a worker by calling: Chesstrainer.Worker.start_link(arg)
|
|
# {Chesstrainer.Worker, arg},
|
|
# Start to serve requests, typically the last entry
|
|
ChesstrainerWeb.Endpoint,
|
|
{Registry, keys: :unique, name: Chesstrainer.CacheRegistry},
|
|
{Chesstrainer.Cache, :tablebase}
|
|
]
|
|
|
|
# See https://elixir.hexdocs.pm/Supervisor.html
|
|
# for other strategies and supported options
|
|
opts = [strategy: :one_for_one, name: Chesstrainer.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
|
|
ChesstrainerWeb.Endpoint.config_change(changed, removed)
|
|
:ok
|
|
end
|
|
end
|