memEx/lib/memex/application.ex

49 lines
1.3 KiB
Elixir
Raw Normal View History

2022-07-25 19:31:54 -04:00
defmodule Memex.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
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
2022-07-25 19:31:54 -04:00
Memex.Repo,
2021-03-11 21:12:55 -05:00
# Start the Telemetry supervisor
2022-07-25 19:31:54 -04:00
MemexWeb.Telemetry,
2021-03-11 21:12:55 -05:00
# Start the PubSub system
2022-07-25 19:31:54 -04:00
{Phoenix.PubSub, name: Memex.PubSub},
2021-03-11 21:12:55 -05:00
# Start the Endpoint (http/https)
2022-07-25 19:31:54 -04:00
MemexWeb.Endpoint,
2022-02-25 22:12:55 -05:00
# Add Oban
{Oban, oban_config()}
2022-07-25 19:31:54 -04:00
# Start a worker by calling: Memex.Worker.start_link(arg)
# {Memex.Worker, arg}
2021-03-11 21:12:55 -05:00
]
2022-01-22 20:12:32 -05:00
# Automatically migrate on start in prod
children =
2022-07-25 19:31:54 -04:00
if Application.get_env(:memex, Memex.Application, automigrate: false)[:automigrate],
do: children ++ [Memex.Repo.Migrator],
2022-01-22 20:12:32 -05:00
else: children
2021-03-11 21:12:55 -05:00
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
2022-07-25 19:31:54 -04:00
opts = [strategy: :one_for_one, name: Memex.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
2022-07-25 19:31:54 -04:00
MemexWeb.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
2022-07-25 19:31:54 -04:00
Application.fetch_env!(:memex, Oban)
2022-02-25 22:12:55 -05:00
end
2021-03-11 21:12:55 -05:00
end