Skip to content

Managing Apps

The App Manager in the Falcon console provides tools to view, edit, and manage your Foundry apps throughout their lifecycle.

Go to Foundry > App manager to see all apps you’ve created or have developer access to. Each app shows:

  • Capability summary — List of all capabilities (functions, integrations, collections, etc.) in the app
  • Deployments — History of all deployments with status, timestamp, and version
  • Releases — History of all releases with status and version
  • App status — Current state of the app
StatusDescription
DraftApp has been created but never deployed.
DeployedApp has been deployed but not yet released.
ReleasedApp has been released and is available for installation.
InstalledApp is installed and active in the CID.

From the App Manager, click on any app to open the App Builder. You can:

  • Add, modify, or remove capabilities
  • Edit function code, API integrations, workflow templates, and UI extensions
  • Update the app manifest

Changes are not live until you deploy and release a new version.

If your app’s configuration in the Falcon console has drifted from its deployed state, use the Sync option to reconcile.

From the CLI:

Terminal window
foundry apps sync
  • Development mode — Load your in-progress changes in the Falcon console for real-time testing. Only visible to you. Activate from the App Builder toolbar or via foundry ui run in the CLI.
  • Preview mode — After deploying, preview the app as end users will see it. Useful for final validation before releasing.

To delete an app, it must first be uninstalled from all CIDs. Then:

  1. Go to Foundry > App manager.
  2. Select the app.
  3. Click Delete.

From the CLI:

Terminal window
foundry apps delete --name "My App"