Guides developers through their first steps on Google Cloud, covering account creation, billing setup, project management, CLI installation, and deploying a fir
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-google-cloud-onboarding-550093900a69 ,按照其中的说明把「google-cloud-onboarding」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
This skill provides a streamlined "happy path" for a singleton developer to get started with Google Cloud. It covers everything from initial account setup to deploying your first cloud resource.
For an individual developer, onboarding to Google Cloud involves establishing a personal identity, setting up a billing method, and creating a workspace (Project) where resources can be managed. Google Cloud offers a Free Tier and Free Trial for multiple products. Learn more here.
Before proceeding, the agent should clarify the user's current status:
Google Cloud resources are organized into Projects.
my-first-gcp-project).Ensure your project is linked to your Free Trial Cloud Billing account.
The Google Cloud CLI
(gcloud CLI) is the primary tool for interacting with Google Cloud from your
local machine.
gcloud initMost services require their specific
API to be enabled before
use. For example, to use Cloud
Run, run:
gcloud services enable run.googleapis.com
Note that some Google Cloud APIs, including Cloud Logging, are enabled by default.
Choose a simple entry point based on your needs:
e2-micro which is part of the Always Free tier in
certain regions).Example (Cloud Run):
gcloud run deploy hello-world \
--image=gcr.io/cloudrun/hello \ --platform=managed \ --region=us-central1 \
--allow-unauthenticated --quiet
This command will output a public URL, that you can reach in a web browser. Congrats - you just deployed your first Google Cloud resource!
Use this logic to determine if the user has successfully completed the Google Cloud onboarding process:
gcloud beta billing projects describe PROJECT_ID)?gcloud config list show the correct account
and project?