KinoPhoenixLiveview.Application (kino_phoenix_live_view v0.1.0)

The main application module for the Kino Phoenix LiveView integration.

This module defines the application supervision tree, which includes a PubSub server, a Registry, and the configured endpoint. It is responsible for starting all necessary processes for the LiveView proxy.

Summary

Functions

Defines the child specification for the application.

Starts the application supervision tree.

Functions

child_spec(opts)

Defines the child specification for the application.

This specification is used by the supervisor to start the application.

start(type, args)

Starts the application supervision tree.

It starts a PubSub server, a Registry, and the configured Phoenix endpoint.

Parameters

  • _type: The type of start (ignored).
  • _args: The start arguments (ignored).

Returns

  • {:ok, pid} on successful startup.