deployments
Deploy your app to the cloud and manage existing deployments. These commands operate on the project configured in your profile.
llamactl deployments [COMMAND] [options]Commands:
list: List deployments for the configured projectget [DEPLOYMENT_ID] [--non-interactive]: Show details; opens a live monitor unless--non-interactivecreate: Interactively create a new deploymentedit [DEPLOYMENT_ID]: Interactively edit a deploymentdelete [DEPLOYMENT_ID] [--confirm]: Delete a deployment;--confirmskips the promptupdate [DEPLOYMENT_ID]: Pull latest code from the configured branch and redeploy
Notes:
- If
DEPLOYMENT_IDis omitted, you’ll be prompted to select one. - All commands accept global options (profile, host, etc.).
Commands
Section titled “Commands”llamactl deployments listShows a table of deployments with name, id, status, repo, deployment file, git ref, and secrets summary.
llamactl deployments get [DEPLOYMENT_ID] [--non-interactive]- Default behavior opens a live monitor with status and streaming logs.
- Use
--non-interactiveto print details to the console instead of opening the monitor.
Create (interactive)
Section titled “Create (interactive)”llamactl deployments createStarts an interactive flow to create a deployment. You can provide values like repository, branch, deployment file path, and secrets. (Flags such as --repo-url, --name, --deployment-file-path, --git-ref, --personal-access-token exist but creation is currently interactive.)
Edit (interactive)
Section titled “Edit (interactive)”llamactl deployments edit [DEPLOYMENT_ID]Opens an interactive form to update deployment settings.
Delete
Section titled “Delete”llamactl deployments delete [DEPLOYMENT_ID] [--confirm]Deletes a deployment. Without --confirm, you’ll be asked to confirm.
Update
Section titled “Update”llamactl deployments update [DEPLOYMENT_ID]Refreshes the deployment to the latest commit on the configured branch and shows the resulting Git SHA change.
See also
Section titled “See also”- Getting started: Introduction
- Configure names, env, and UI: Deployment Config Reference
- Local dev server:
llamactl serve