惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
Last Week in AI
Last Week in AI
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
WordPress大学
WordPress大学
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
罗磊的独立博客
The Cloudflare Blog
V
V2EX
月光博客
月光博客
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
GbyAI
GbyAI
博客园 - 【当耐特】
T
Tailwind CSS Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
[GCP Practice][BwAI] AI-Powered Development: Quickly Depl...
Evan Lin · 2026-05-07 · via DEV Community

Preview Program 2026-05-05 12.38.54

Background

In the upcoming Build With AI 2026 workshop, we're bringing a very practical project: the LINE Bot File Backup Robot. It allows you to directly upload images and files from your LINE chatroom to Google Drive, and it will automatically create folders by month to keep things organized.

Traditionally, putting a project like this, which includes OAuth authorization, a Firestore database, and Cloud Run container deployment, on the cloud would often leave beginners struggling with lengthy gcloud commands.

But this time it's different, we have a secret weapon: Gemini CLI.

This article will document how we used AI as a DevOps engineer, completing the entire complex deployment process by "talking," and of course, including the various real pitfalls we encountered along the way.


Preparation: Summoning the AI Assistant

Before we start, besides the basic gcloud installation and login, you only need to install Gemini CLI.

Prepare the following "confidential parameters" (all are Mock processed in this article):

  • PROJECT_ID: your-cool-project-id
  • LINE Channel Secret: YOUR_LINE_SECRET_XXXX
  • LINE Access Token: YOUR_LINE_TOKEN_XXXX

After entering the project folder, I only said one sentence to Gemini CLI:

"Help me deploy to Cloud Run using gcloud, and stop and ask me if you need any information. Refer to the repo…"

Next, it's time to witness miracles (and fix bugs).


Practical Deployment Process: AI Leading the Way

Gemini CLI intelligently analyzed Dockerfile and main.go and immediately listed a set of battle plans.

Step 1: Environment Detection and API Enablement

The AI first confirmed my current project settings in gcloud and then enabled the necessary services in one go:

gcloud services enable firestore.googleapis.com \
  cloudbuild.googleapis.com \
  run.googleapis.com \
  artifactregistry.googleapis.com

Enter fullscreen mode Exit fullscreen mode

Step 2: Creating a Firestore Database (Encountering the First Pitfall)

Our Bot needs to record the OAuth State anti-counterfeiting mark, so Firestore is needed. The AI tried to execute the command, but we immediately encountered an error. (See the pitfall record below for details)

After correction, the correct command is:

gcloud firestore databases create --location=asia-east1 --type=firestore-native

Enter fullscreen mode Exit fullscreen mode

Step 3: Deploying Cloud Run First, Filling in the Blanks Later

This is a classic "chicken or the egg" problem: Google OAuth needs to know your Cloud Run URL (Redirect URI), but your Cloud Run deployment needs to fill in the OAuth Client ID and Secret.

Gemini CLI's strategy is great: Deploy with placeholders first!

gcloud run deploy linebot-backup-service \
  --source . \
  --region asia-east1 \
  --set-env-vars "GOOGLE_CLOUD_PROJECT=your-cool-project-id,ChannelSecret=YOUR_LINE_SECRET_XXXX,ChannelAccessToken=YOUR_LINE_TOKEN_XXXX,GOOGLE_CLIENT_ID=PENDING,GOOGLE_CLIENT_SECRET=PENDING,GOOGLE_REDIRECT_URL=PENDING" \
  --allow-unauthenticated \
  --quiet

Enter fullscreen mode Exit fullscreen mode

After successful deployment, we got a string of fragrant URLs: https://linebot-backup-service-xxxxx.a.run.app.

Step 4: Completing Google OAuth Settings and Environment Variable Updates

With the URL, I can go to the "API & Services" in Google Cloud Console to complete the settings:

  1. Create an OAuth consent screen.
  2. Create credentials for a Web application.
  3. Fill in the "Authorized redirect URI" with the URL we just got, plus /oauth/callback.

After getting the real ID and Secret, I directly pasted the information to Gemini CLI, and it automatically updated the service for me:

gcloud run services update linebot-backup-service \
  --region asia-east1 \
  --update-env-vars "GOOGLE_REDIRECT_URL=https://[YOUR_URL]/oauth/callback,GOOGLE_CLIENT_ID=real-client-id.apps.googleusercontent.com,GOOGLE_CLIENT_SECRET=real-secret-xxxx"

Enter fullscreen mode Exit fullscreen mode

Done! Finally, just go to the LINE Developers Console and fill in the Webhook.


Blood and Tears Pitfall Records During the Deployment Process

It looks smooth, but in fact, the AI and I hit a few walls together. This is also the most real experience of using CLI tools.

Pitfall 1: Forgetting to Bind a Credit Card, the 390001 Error

When executing the first gcloud run deploy, the terminal directly spewed red text all over the face:

FAILED_PRECONDITION: Billing account for project is not found...

Reason: Cloud Run and Cloud Build require the project to enable billing (Billing Enabled). This is a brand new test project, and I forgot to bind the billing account. Solution: The AI immediately checked the project status for me (gcloud beta billing projects describe) and asked me if I wanted to switch to a project with billing, or to fix it. I obediently went to the Console to bind my credit card, and the deployment was able to continue.

Pitfall 2: The Evolution of Command Parameter Syntax

When creating Firestore, the AI initially gave the command --type=native-mode or --type=native, but gcloud didn't appreciate it:

ERROR: argument --type: Invalid choice: 'native-mode'

Reason: The CLI parameters of gcloud will change with version updates. Solution: Carefully look at the gcloud error message, and now the correct parameter values are firestore-native or datastore-mode. After changing to --type=firestore-native, it passed smoothly.

Pitfall 3: The Invisible "Drive API"

When everything was deployed, we encountered a permission error when testing "upload to Google Drive". Reason: This is a Bot that helps you upload files to Drive, but when we enabled the API in the first step, we actually forgot to enable the protagonist: Google Drive API! Without it, even if OAuth authorization is successful, the program will still be blocked. Solution: I only entered the mysterious "3." (implying the third checkpoint) into the terminal, and the AI immediately understood and added this critical blow:

gcloud services enable drive.googleapis.com

Enter fullscreen mode Exit fullscreen mode


Conclusion

Through Gemini CLI, the originally tedious and error-prone infrastructure construction work has become a "two-person pair programming" session.

AI can help you remember lengthy gcloud parameters, help you sort out the deployment logic (deploy with PENDING first and then update), and even adjust strategies quickly based on error messages when you encounter errors.

This is the core spirit that Build With AI 2026 wants to convey: let AI handle the tedious DevOps chores, so that developers can focus more energy on innovation in core business logic.

If you are still manually typing long and ugly gcloud commands, I strongly recommend you install Gemini CLI and give it a try!