Skip to main content

projects

Manage GCP projects from the CLI.


advncd projects list

List all ACTIVE GCP projects available to the authenticated account.

advncd projects list

Output:

ACTIVE projects:
- my-gcp-project (My Project)
- another-project
- n8n-prod-abc123

Delete one project:
advncd projects delete <project_id>

advncd projects delete

Request deletion of a GCP project. The project enters Google Cloud's deletion lifecycle (not immediately deleted).

advncd projects delete my-old-project

By default, the CLI prompts you to type the project ID to confirm:

Delete project "my-old-project"?
Type the project id to confirm: my-old-project
✓ Delete request accepted.
Project enters deletion lifecycle in Google Cloud.

Skip the confirmation prompt:

advncd projects delete my-old-project --yes

Flags:

FlagDefaultDescription
--yesfalseSkip confirmation prompt
caution

Project deletion is irreversible once the deletion lifecycle completes in Google Cloud. All resources in the project (Cloud Run services, storage, databases) will be deleted.


advncd init

Set the default project and region for all subsequent commands.

advncd init

Interactive — lists your projects and regions. Or pass flags to skip prompts:

advncd init --project my-gcp-project --region europe-west1

See Getting Started → Quickstart for a full walkthrough.


advncd apis enable

Enable required GCP APIs in the current project.

advncd apis enable

Enables: run.googleapis.com, cloudbuild.googleapis.com, artifactregistry.googleapis.com, monitoring.googleapis.com.

Enable specific APIs only:

advncd apis enable run cloudbuild

Override project:

advncd apis enable --project my-other-project

Flags:

FlagDefaultDescription
--projectconfigured defaultGCP project ID