CLI
Packages
List deployment packages available in your workspace.
Deployment packages define CPU, memory, and storage for new applications. You need a package ID when running nextune app deploy.
List packages
nextune packages listExample:
NAME CPU MEMORY STORAGE ID
Starter 0.5 512Mi 1Gi pkg_abc123
Production 2 2Gi 10Gi pkg_def456Use --json to parse IDs in scripts:
nextune packages list --jsonUse with deploy
nextune app deploy \
--image myorg/api \
--tag v1.2.0 \
--package pkg_abc123 \
--name my-apiSee Apps for full deploy options.