application.ex 988 B

1234567891011121314151617181920212223242526272829303132
  1. defmodule Fourletters.Application do
  2. # See https://hexdocs.pm/elixir/Application.html
  3. # for more information on OTP Applications
  4. @moduledoc false
  5. use Application
  6. def start(_type, _args) do
  7. children = [
  8. # Start the Telemetry supervisor
  9. FourlettersWeb.Telemetry,
  10. # Start the PubSub system
  11. {Phoenix.PubSub, name: Fourletters.PubSub},
  12. # Start the Endpoint (http/https)
  13. FourlettersWeb.Endpoint
  14. # Start a worker by calling: Fourletters.Worker.start_link(arg)
  15. # {Fourletters.Worker, arg}
  16. ]
  17. # See https://hexdocs.pm/elixir/Supervisor.html
  18. # for other strategies and supported options
  19. opts = [strategy: :one_for_one, name: Fourletters.Supervisor]
  20. Supervisor.start_link(children, opts)
  21. end
  22. # Tell Phoenix to update the endpoint configuration
  23. # whenever the application is updated.
  24. def config_change(changed, _new, removed) do
  25. FourlettersWeb.Endpoint.config_change(changed, removed)
  26. :ok
  27. end
  28. end