This article explains how Draft and Published states apply to each deployed version of a Flows custom app, and how the active version determines what users see on the Custom apps page in Cognite Data Fusion (CDF). Every version of a Flows custom app has a lifecycle state that controls whether it can be modified. Separately, an app has at most one active version — the build users run when they open the app from Custom apps.Documentation Index
Fetch the complete documentation index at: https://docs.cognite.com/llms.txt
Use this file to discover all available pages before exploring further.
Version states
Each app version is always in one of two states — Draft or Published. The state controls whether you can change its files and how you promote that build for users.Draft
A version starts as Draft after you runapps deploy. Draft versions:
- Are mutable — you can redeploy to update files, change the entry point, or iterate freely.
- Can be shared via a direct link.
- Are not the active version until you explicitly activate them.
Published
To transition a version from Draft to Published, runapps publish. Published versions:
- Are immutable — files and configuration are locked and cannot be changed.
- Can be shared via a direct link.
- Can be set as the active version for the app.
Active version
An app has zero or one active version at any time. If no version is active, the app does not appear on the Custom apps page in CDF. Once you activate a version:- The app becomes visible on the Custom apps page, and the activated version is what users open.
- It is the version served when no specific version is requested in the URL.
CLI commands
apps activate combines publish and activate in one step. Use it when you’re ready to ship directly without a separate review.
Typical workflow
Further reading
- Deploy your Flows custom app — Interactive and CI/CD deployment options.
- Run your Flows custom app locally — Dev server and local development.