Initial commit

After mix phx.new
This commit is contained in:
Thelonius Kort
2022-12-26 14:55:17 +01:00
commit 81466c3941
45 changed files with 2464 additions and 0 deletions

View File

@ -0,0 +1,38 @@
defmodule Outlook.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
OutlookWeb.Telemetry,
# Start the Ecto repository
Outlook.Repo,
# Start the PubSub system
{Phoenix.PubSub, name: Outlook.PubSub},
# Start Finch
{Finch, name: Outlook.Finch},
# Start the Endpoint (http/https)
OutlookWeb.Endpoint
# Start a worker by calling: Outlook.Worker.start_link(arg)
# {Outlook.Worker, arg}
]
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: Outlook.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
OutlookWeb.Endpoint.config_change(changed, removed)
:ok
end
end