Navigate the GCP console, create a project, enable APIs, install gcloud CLI, and understand the resource hierarchy that organizes everything in Google Cloud.
GCP organizes resources in a hierarchy: Organization → Folder → Project → Resource. Most developers start at the Project level. Each project has its own billing, APIs, and permissions.
# Install: cloud.google.com/sdk
gcloud init
gcloud auth login
gcloud config set project YOUR_PROJECT_ID
# Useful commands
gcloud projects list
gcloud services list --enabled
gcloud services enable compute.googleapis.com
gcloud config list# APIs must be enabled before use
gcloud services enable \
run.googleapis.com \
storage.googleapis.com \
bigquery.googleapis.com \
aiplatform.googleapis.comgcloud services enable service.googleapis.com.