Skip to main content
Apps are versioned through the Synthetiq platform. Each version is an immutable snapshot that can be installed, shared, or deployed.

Publishing a version

synthetiq app push my-app --message "Added dashboard page"
This builds, packages, and publishes a new version to the Synthetiq registry.

Version history

List all published versions:
synthetiq app versions my-app

Active version

Set which version is current in the app store:
synthetiq app set-active my-app --version 2024.06.10-153042

Installing a specific version

synthetiq store install my-app --version 2024.06.08-091530
By default, store install installs the active version. Use --version to install a specific version, such as when rolling back to a previous release. See the CLI app commands and Platform API versions docs for details.