2021-03-11 21:12:55 -05:00
|
|
|
defmodule Lokal.Application do
|
|
|
|
# See https://hexdocs.pm/elixir/Application.html
|
|
|
|
# for more information on OTP Applications
|
|
|
|
@moduledoc false
|
|
|
|
|
|
|
|
use Application
|
|
|
|
|
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
|
|
|
|
Lokal.Repo,
|
|
|
|
# Start the Telemetry supervisor
|
|
|
|
LokalWeb.Telemetry,
|
|
|
|
# Start the PubSub system
|
|
|
|
{Phoenix.PubSub, name: Lokal.PubSub},
|
|
|
|
# Start the Endpoint (http/https)
|
2022-01-22 13:01:36 -05:00
|
|
|
LokalWeb.Endpoint,
|
2021-03-11 21:12:55 -05:00
|
|
|
# Start a worker by calling: Lokal.Worker.start_link(arg)
|
|
|
|
# {Lokal.Worker, arg}
|
2022-01-22 13:01:36 -05:00
|
|
|
# Automatically migrate on start
|
|
|
|
Lokal.Repo.Migrator
|
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: Lokal.Supervisor]
|
|
|
|
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
|
|
|
|
LokalWeb.Endpoint.config_change(changed, removed)
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
end
|