Skip to main content

Overview

Manage projects within your Qovery organization.

Commands

List Projects

List all projects in current organization:
qovery project list

Create Project

Create a new project:
qovery project create --name "My Project"
With description:
qovery project create \
  --name "Backend Services" \
  --description "Microservices for backend APIs"

Delete Project

Delete a project:
qovery project delete --project "project-id"
Deleting a project will delete all environments and services within it. This action cannot be undone.

Options

FlagDescription
--nameProject name
--descriptionProject description
--projectProject ID or name
--organizationOrganization ID or name
--outputOutput format (table, json, yaml)
--helpShow help

Examples

Create and Use Project

# Set organization context
qovery context set --organization "My Org"

# Create project
qovery project create --name "Mobile App"

# List projects to verify
qovery project list

# Set project context
qovery context set --project "Mobile App"

Delete Project

# List projects
qovery project list

# Delete specific project
qovery project delete --project "old-project-id"