Skip to main content

deploy

Deploy an app:
synthetiq deploy <app-id> --version <version-id>

list

List deployment history for an app:
synthetiq deploy list <app-name>
ID              VERSION              PLATFORM   STATUS      DATE
dep_abc123      2024.06.10-153042    aws        Active      Jun 10, 2024
dep_def456      2024.06.08-091530    aws        Superseded  Jun 8, 2024
dep_ghi789      2024.06.05-140000    vercel     Failed      Jun 5, 2024
FlagDescription
--jsonOutput as JSON
--limit <n>Number of deployments to show (default: 10)

status

Get the status of a specific deployment:
synthetiq deploy status <deployment-id>
Deployment:  dep_abc123
App:         my-app
Version:     2024.06.10-153042
Platform:    aws
Status:      Active
URL:         https://my-app.apps.yourcompany.com
Created:     Jun 10, 2024 15:30:42

cancel

Cancel an active deployment that is currently in progress:
synthetiq deploy cancel <deployment-id>
Only deployments in a building or deploying state can be cancelled. Completed or failed deployments cannot be cancelled.

delete

Delete a production app and its associated infrastructure:
synthetiq deploy delete <app-name>
Removes the production app, its deployment history, and any platform-specific resources (containers, DNS records, etc.). This does not delete the source code in your workspace. The CLI prompts for confirmation before proceeding.
FlagDescription
--forceSkip confirmation prompt