Documentation Index Fetch the complete documentation index at: https://qovery-update-mcp-query.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The Qovery CLI (Command Line Interface) enables you to interact with Qovery directly from your terminal. Deploy applications, manage environments, stream logs, and more - all without leaving your command line.
Installation
Linux
MacOS
Windows
Docker
To download and install Qovery CLI on any Linux distribution: curl -s https://get.qovery.com | bash
Qovery is part of AUR packages, so you can install it with yay : Install the Qovery CLI on Linux manually by downloading the latest release , and uncompress its content to a folder into your shell PATH. The common solution to install a command line binary on the MacOS is to use Homebrew . # Add Qovery brew repository
brew tap Qovery/qovery-cli
# Install the CLI
brew install qovery-cli
To download and install Qovery CLI from the command line: curl -s https://get.qovery.com | bash
Install the Qovery CLI on Mac OS manually by downloading the latest release , and uncompress its content to a folder into your shell PATH. The classic way to install binaries on Windows is to use Scoop . # Add Qovery bucket
scoop bucket add qovery https://github.com/Qovery/scoop-qovery-cli
# Install the CLI
scoop install qovery-cli
Install the Qovery CLI on Windows manually by downloading the latest release , and uncompress its content to C:\Windows. Install Docker on your local machine and run the following command: # Pull and Run the latest Qovery CLI
docker run ghcr.io/qovery/qovery-cli:latest help
Change latest by the version you want to use. For example, to use the version 0.58.4, run: docker run ghcr.io/qovery/qovery-cli:0.58.4 help
Verify Installation
Authentication
Before using the CLI, you need to authenticate:
This will open a browser window for authentication. Once completed, you’ll be ready to use the CLI.
API Token Authentication
You can also authenticate using an API token:
export QOVERY_CLI_ACCESS_TOKEN = "your-api-token"
qovery auth
Generate an API token from the Qovery Console .
Configuration
The CLI stores configuration in ~/.qovery/context.json. You can manage multiple contexts for different organizations or clusters.
Set Default Context
List Contexts
Key Features
Deploy Applications Deploy and redeploy applications instantly from the terminal
Environment Management Create, update, and manage environments
Live Logs Stream real-time logs from your applications
Shell Access Execute commands directly in running containers
Quick Start
List Projects
List Environments
Deploy an Application
qovery application deploy
View Logs
Next Steps
CLI Commands Explore all available commands and examples