google-app-engine

Deploy and configure Python applications on Google App Engine environments.

3|Updated Nov 14, 2025
One-click install
npx skills add https://github.com/evolv3ai/claude-skills-archive --skill google-app-engine-evolv3ai
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: google-app-engine
Source: https://github.com/evolv3ai/claude-skills-archive/tree/main/skills/google-app-engine
Command: npx skills add https://github.com/evolv3ai/claude-skills-archive --skill google-app-engine-evolv3ai

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) and templates (resource) components.

What problem does it solve?

This Skill simplifies the deployment and configuration of Python applications on Google App Engine, handling everything from basic deployment to complex integrations like Cloud SQL and Cloud Storage.

Core Features & Use Cases

  • Deployment: Deploy Python apps to App Engine Standard and Flexible environments using gcloud app deploy.
  • Configuration: Manage app.yaml settings for runtime, scaling, environment variables, and handlers.
  • Integrations: Seamlessly connect to Cloud SQL via Unix sockets and serve static files using Cloud Storage.
  • Use Case: Deploy a Django application to App Engine Standard, configure it to use a Cloud SQL PostgreSQL instance, and serve static assets from a Cloud Storage bucket.

Quick Start

Deploy your Python application to Google App Engine by running the gcloud app deploy command.

Frequently Asked Questions about google-app-engine

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a Python app to Google App Engine?

To deploy a Python app to Google App Engine, configure your `app.yaml` file with the appropriate runtime and scaling settings, then execute the `gcloud app deploy` command to push the application to either the Standard or Flexible environment.

How do I connect Google App Engine to Cloud SQL using Unix sockets?

Connecting Google App Engine to Cloud SQL via Unix sockets involves configuring your application's database connection string to point to the Cloud SQL instance's Unix socket path, a setup process this Skill guides you through for production readiness.

Can I serve static files from Cloud Storage on Google App Engine?

Yes, you can serve static files on Google App Engine by configuring Cloud Storage buckets to host your assets and updating your `app.yaml` handlers to route static file requests to that bucket.

What is the difference between App Engine Standard and Flexible environments for Python?

App Engine Standard and Flexible environments differ in how they execute Python applications and scale, with Standard offering constrained runtimes and Flexible allowing custom configurations, both of which this Skill helps you configure and deploy to.

Why does my `app.yaml` configuration cause deployment issues on Google App Engine?

Your `app.yaml` configuration may cause deployment issues if scaling parameters, environment variables, or runtime settings are incorrectly defined, so this Skill provides best practices to validate and optimize these configurations for production.

Do I need `gcloud` to deploy a Django application to Google App Engine?

Yes, you need the `gcloud` command-line tool to deploy a Django application to Google App Engine, specifically using the `gcloud app deploy` command after configuring your `app.yaml` and Cloud SQL connections.