Skip to main content

Run and refine your app

There is no separate "preview" step in OpenBuild — your virtual app is live. It runs at /apps/openbuild/builder/<slug>, rendered from its manifest, exactly as an end user sees it. You click through it like a real user, and when you spot something to change you fix it in place with Edit with OpenBuild — no round-trip through a separate designer.

Goal

By the end you will have opened your virtual app, clicked through its menu, opened a record on a detail page, and made a small refinement in-app.

Prerequisites

Steps

  1. Open the app. From the OpenBuild Apps list click your app, then Open (or go to /apps/openbuild/builder/<slug> directly). The app loads in its live shell: its title in the header, its menu on the left.

    A virtual app running in its live shell

  2. Click the menu. Every entry should resolve to a page with no error banner. Index pages list records; detail pages open a single record; dashboard pages show their widgets.

  3. Open a record. On an index page, click a row to open its detail page. The detail body shows the Data and Related widgets (and anything else you added).

  4. Refine in place. Spot something to change? Click Edit with OpenBuild → Edit page, adjust the grid / widgets, and Save page. There's no separate build surface to switch to and no redeploy — the manifest updates and the page re-renders. See Build your app in-app.

    The Edit with OpenBuild menu on the live app

Verification

The app runs correctly when: every menu entry resolves to a page with no error banner, list rows load, detail pages show their data, and an in-app edit survives a reload (the manifest persisted).

Common issues

SymptomFix
The shell shows "App manifest not found"The app has no pages yet — open it and add one via Edit with OpenBuild → Edit pages….
A menu entry 404sIts page was removed but the menu entry kept — fix it in Edit with OpenBuild → Edit menu….
A page lists no rowsThe register/schema has no records yet, or a connector source returns nothing — add a record or check the source.
An edit "disappeared" after reloadYou left edit mode with Cancel or didn't Save page — re-edit and save.

Reference