GetPaidX docs

The end-user manual for public and signed-in product features.

Search docs

Keyword search across docs titles, summaries, headings, and curated keywords.

Workspaces and ArtifactsUpdated 2026-03-06

Workspace Runtime, Preview, and Publishing

How runtime defaults, live preview startup, static preview files, and published artifact site settings map to the Config tab.

Where you see this in the app

These controls live in the post-level Workspace config & automations panel, especially the Config tab.

The settings are grouped around how the workspace starts, how preview content is found, and how a published artifact site is served.

Runtime defaults for interactive workspaces

The Runtime defaults group affects how interactive workspace launches behave when no one-off override is provided.

SettingWhat it means to an end user
Live preview startup modeWhether the app should try to start a live app, require it, or skip it and use static preview only
Live app start commandThe command used to start the live app when live preview is allowed
Live app working dirThe workspace subdirectory the live app should start from
Live app install commandAn optional install step before the live app starts

The three startup modes should be understood like this:

ModeEnd-user meaning
AUTOTry the live app first, then fall back to static preview if needed
LIVE_ONLYThe live app is required; static preview is not the fallback
STATIC_ONLYDo not start a live app; use static preview only

AUTO is the most forgiving mode when the workspace may support both styles.

Static preview settings

Static preview is the browser-visible file-based preview for the workspace before you are talking about the separately published artifact site.

SettingPlain-English meaning
Static preview directoryThe folder the app should treat as the root of the preview files
Static preview entry fileThe first file the preview should open, such as index.html
Static preview routingWhether the preview behaves as plain static files or as an SPA with fallback routing

Static preview entry file is important because it tells the app which file should open first inside the chosen preview directory. If the directory is right but the entry file is wrong, the preview can still feel broken.

Use Single-page app fallback when your preview needs front-end routing behavior instead of simple file-by-file navigation.

Published site settings

The published site controls look similar, but they apply to the artifact site you intend to share as the stable published output.

SettingPlain-English meaning
Published site directoryThe folder that should be published as the artifact site
Published site entry fileThe first file the published site should open
Published site routingWhether the published site behaves like plain static files or an SPA

These controls matter because the published site is the outward-facing deliverable, not just the working preview.

How to think about preview vs published site

A practical mental model is:

  • runtime defaults decide how the workspace experience starts,
  • static preview decides what viewers see inside the workspace preview flow,
  • published site settings decide what the separately published artifact site exposes.

Those are related, but they are not the same surface.

If a workspace feels correct internally but the public artifact site feels wrong, the published-site settings are the first place to inspect. If the workspace preview itself feels wrong before publication, the static preview settings are the first place to inspect.