This repository contains sample projects for learning Google Cloud Platform (GCP) services.
This is a simple Node.js application deployed to Google App Engine. It demonstrates the basic concepts of deploying and running a web application on GCP.
- Google Cloud SDK installed
- Node.js and npm installed
- A Google Cloud Platform account
- A GCP project created
-
Clone this repository
-
Navigate to the
hello-world-app-enginedirectory -
Install dependencies:
npm install
-
Test locally:
npm start
-
Deploy to App Engine:
gcloud app deploy
-
Access your application:
gcloud app browse
hello-world-app-engine/
├── app.js # Main application file
├── app.yaml # App Engine configuration
├── package.json # Node.js dependencies
└── README.md # Project documentation
- Basic GCP project setup
- App Engine standard environment configuration
- Deploying Node.js applications to App Engine
- Understanding app.yaml configuration
- Basic GCP CLI commands