Overview
Manage projects within your Qovery organization.
Commands
List Projects
List all projects in current organization:
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
| Flag | Description |
|---|
--name | Project name |
--description | Project description |
--project | Project ID or name |
--organization | Organization ID or name |
--output | Output format (table, json, yaml) |
--help | Show 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"