Skip to content

Panel Apps

Panel Apps let you publish interactive HoloViz Panel applications — parameterized inputs, live charts, and embedded data tables — directly from PlaidCloud. You manage them from the My Panel Apps screen, which lists every app alongside its runtime, build status, and URL.

There are two runtimes, shown in the Runtime column:

  • WASM — a static app that runs entirely in the browser (Pyodide). You publish a pre-built HTML file from a document account. There is no server process and nothing to scale; it is served immediately.
  • Server — an app built from a git repository and run server-side. On publish, PlaidCloud builds your repository into a container that idles at zero replicas, wakes on the first request to its URL, serves (including live updates), and scales back to zero when idle. This is the right choice for apps that need a Python runtime, server-side compute, or libraries that can’t run in the browser.
WASMServer
SourceA published HTML fileA git repository (connection, branch, entry point)
RunsIn the browserServer-side, scale-to-zero
Best forLightweight, self-contained dashboardsApps needing server compute or full Python libraries
Cold startNoneFirst request spins the app up (~15 seconds)