The workbench
The workbench is Apptrope’s home screen, the place you return to between runs. Every app you point Apptrope at is saved here automatically, so your Library grows as you work. From the workbench you can search past apps, launch several of them at once in isolated tabs, read the live output from any run, and keep things tidy with pin, rename, and remove. This page walks through each of those pieces.

Your workbench: the Library of saved apps, with the Run bar top-right and per-app cards below.
The Library
The Library is the grid of cards under Your workbench. You never add apps to it by hand. Every app you run is saved here automatically, so the Library becomes a record of everything you’ve opened in Apptrope. The heading shows the current count (for example, Apps · 6).
Each card carries the app’s metadata at a glance:
- A framework badge showing the language (
Rorpy) and the framework it runs on (Shiny, Streamlit, Gradio, Dash, Marimo, Solara, and so on). - The app name.
- A one-line description.
- The author (
by Jane Researcher). - The source it was loaded from, such as a local path (
~/apps/forecast-lab), a Git URL (github.com/jane-r/penguins-explorer), a gist, or a bundle (notes.apptrope). - The date it was last touched and its run count (
Jul 1 · 37 runs).
Searching
Type in the Search apps… box above the grid to filter the Library. This is the fastest way to find something again once you’ve accumulated more than a screenful of apps. Search narrows the cards as you type.
Re-running from the Library
To run a saved app again, open its card (double-click, or use Open from the ⋯ menu described below). Apptrope reuses the environment it resolved the first time, so repeat runs start quickly rather than re-resolving dependencies from scratch.
Running several apps at once
The workbench is multi-tab. The tab strip lives in the top bar next to the Library tab, with a + button to open a new one. Each running app gets its own tab and its own isolated environment, so you can keep several apps live side by side without them interfering with one another. Switch between them by clicking their tabs. The Library tab always stays available to launch more.
Because each tab is fully isolated, one app’s packages, R or Python version, and environment variables never leak into another’s. Running a Shiny app in one tab and a Streamlit app in the next is completely safe.
Per-run logs
Apptrope captures the full output of every run, live. That’s everything the app writes as it resolves dependencies and starts up. To read it, open a card’s ⋯ → View logs.
Logs are the first place to look when an app doesn’t behave as expected:
- If an app fails to start, the log usually shows the underlying error from the framework or the dependency resolver.
- If a run is slow the first time, the log shows the resolve step doing its work. That only happens once per environment. Later runs reuse it.
- If the app prints diagnostics or warnings of its own, they’re captured here too.
Because logs are kept per app, you can compare a working run against a broken one without them getting mixed together.
Where to go next
- Set per-app secrets and configuration from
⋯→ Environment… (see the environment-variables page). - Share an app with someone using
⋯→ Export bundle… (see the bundles and sharing page).
