CLI
QuantumDeploy from your terminal
Analyse repos, generate infrastructure, and download artifacts — all from the command line. Integrates with CI/CD pipelines.
macOS / Linux
Auto-detects OS and architecturecurl -sSL https://quantumdeploy.ai/install.sh | shHomebrew
macOS and Linux via Homebrewbrew install quantumdeploy/tap/qdGo Install
Requires Go 1.25+go install github.com/quantumlayer-core/quantumdeploy/cmd/qd@latestOr download directly from GitHub Releases
GitHub ReleasesUsage
terminal
$
qd auth loginStore your API key
$
qd analyse https://github.com/gin-gonic/ginAnalyse a repository
$
qd generate qd-abc123 --cloud azureGenerate infrastructure
$
qd generate qd-abc123 --cloud aws --output ./infra/Download to disk
$
qd listList your analyses
$
qd artifacts dep-abc --downloadDownload deployment files
$
qd analyse https://github.com/org/repo --fail-below 70CI gate
$
qd analyse https://github.com/org/repo --jsonJSON output for pipelines
CI/CD Integration
GitHub Actions
- name: Install QuantumDeploy CLI
run: curl -sSL https://quantumdeploy.ai/install.sh | sh
- name: Analyse repository
run: qd analyse ${{ github.server_url }}/${{ github.repository }} --fail-below 70
env:
QD_API_KEY: ${{ secrets.QD_API_KEY }}
- name: Generate infrastructure
run: qd generate ${{ steps.analyse.outputs.id }} --cloud azure --output ./infra/
env:
QD_API_KEY: ${{ secrets.QD_API_KEY }}