Packages

Multi-surface application runtime for Elixir. One TEA module renders to terminal, browser (LiveView), SSH, and MCP (agents). 30+ widgets, flexbox + CSS grid, AI agent runtime, distributed swarm with CRDTs, time-travel debugging, session recording, sandboxed REPL, and agentic commerce.

Current section

Files

Jump to
raxol lib raxol web supervisor.ex
Raw

lib/raxol/web/supervisor.ex

defmodule Raxol.Web.Supervisor do
@moduledoc """
Web supervisor for Raxol web interface components.
This supervisor manages web-related processes including the WebManager.
"""
use Supervisor
def start_link(opts) do
Supervisor.start_link(__MODULE__, opts, name: __MODULE__)
end
@impl true
def init(_opts) do
children = [
{Raxol.Web.WebManager, []}
]
Supervisor.init(children, strategy: :one_for_one)
end
end