Checkpoints
Deploy your app
/ 100
App Engine: Qwik Start - Python
GSP067
Overview
App Engine allows developers to focus on doing what they do best, writing code. The App Engine standard environment is based on container instances running on Google's infrastructure. Containers are preconfigured with one of several available runtimes (Java 7, Java 8, Python 2.7, Go and PHP). Each runtime also includes libraries that support App Engine Standard APIs. For many applications, the standard environment runtimes and libraries might be all you need.
The App Engine standard environment makes it easy to build and deploy an application that runs reliably even under heavy load and with large amounts of data. It includes the following features:
- Persistent storage with queries, sorting, and transactions.
- Automatic scaling and load balancing.
- Asynchronous task queues for performing work outside the scope of a request.
- Scheduled tasks for triggering events at specified times or regular intervals.
- Integration with other Google cloud services and APIs.
Applications run in a secure, sandboxed environment, allowing App Engine standard environment to distribute requests across multiple servers, and scaling servers to meet traffic demands. Your application runs within its own secure, reliable environment that is independent of the hardware, operating system, or physical location of the server.
This hands-on lab shows you how to create a small App Engine application that displays a short message.
What you'll do
-
Download an application
-
Test the application
-
Deploy the application
Setup
Before you click the Start Lab button
Read these instructions. Labs are timed and you cannot pause them. The timer, which starts when you click Start Lab, shows how long Google Cloud resources will be made available to you.
This hands-on lab lets you do the lab activities yourself in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials that you use to sign in and access Google Cloud for the duration of the lab.
What you need
To complete this lab, you need:
- Access to a standard internet browser (Chrome browser recommended).
- Time to complete the lab.
Note: If you already have your own personal Google Cloud account or project, do not use it for this lab.
Note: If you are using a Chrome OS device, open an Incognito window to run this lab.
How to start your lab and sign in to the Google Cloud Console
-
Click the Start Lab button. If you need to pay for the lab, a pop-up opens for you to select your payment method. On the left is a panel populated with the temporary credentials that you must use for this lab.
-
Copy the username, and then click Open Google Console. The lab spins up resources, and then opens another tab that shows the Sign in page.
Tip: Open the tabs in separate windows, side-by-side.
-
In the Sign in page, paste the username that you copied from the left panel. Then copy and paste the password.
Important: You must use the credentials from the left panel. Do not use your Google Cloud Training credentials. If you have your own Google Cloud account, do not use it for this lab (avoids incurring charges).
-
Click through the subsequent pages:
- Accept the terms and conditions.
- Do not add recovery options or two-factor authentication (because this is a temporary account).
- Do not sign up for free trials.
After a few moments, the Cloud Console opens in this tab.
Activate Cloud Shell
Cloud Shell is a virtual machine that is loaded with development tools. It offers a persistent 5GB home directory and runs on the Google Cloud. Cloud Shell provides command-line access to your Google Cloud resources.
In the Cloud Console, in the top right toolbar, click the Activate Cloud Shell button.
Click Continue.
It takes a few moments to provision and connect to the environment. When you are connected, you are already authenticated, and the project is set to your PROJECT_ID. For example:
gcloud
is the command-line tool for Google Cloud. It comes pre-installed on Cloud Shell and supports tab-completion.
You can list the active account name with this command:
(Output)
You can list the project ID with this command:
(Output)
(Example output)
Enable Google App Engine Admin API
The App Engine Admin API enables developers to provision and manage their App Engine Applications.
- In the left menu click APIs & Services > Library.
- Type "App Engine Admin API" in search box.
- Click App Engine Admin API.
- Click Enable. If there is no prompt to enable the API, then it is already enabled and no action is needed.
Download the Hello World app
There is a simple Hello World app for Python you can use to quickly get a feel for deploying an app to Google Cloud. Follow these steps to download Hello World to your Google Cloud instance.
-
Enter the following command to copy the Hello World sample app repository to your Google Cloud instance:
-
Go to the directory that contains the sample code:
Test the application
Test the application using the Google Cloud development server (dev_appserver.py
), which is included with the preinstalled App Engine SDK.
-
From within your helloworld directory where the app's app.yaml configuration file is located, start the Google Cloud development server with the following command:
The development server is now running and listening for requests on port 8080.
-
View the results by clicking the Web preview > Preview on port 8080.
You'll see this in a new browser window:
Make a change
You can leave the development server running while you develop your application. The development server watches for changes in your source files and reloads them if necessary.
Let's try it. Leave the development server running. We'll open another command line window, then edit main.py
to change "Hello World!" to "Hello, Cruel World!".
-
Click the (+) next to your Cloud Shell tab to open a new command line session.
-
Enter this command to go to the directory that contains the sample code.
-
Enter the following to open main.py in nano to edit the content.
-
Change "Hello World!" to "Hello, Cruel World!". Exit and save the file.
-
Reload the Hello World! Browser or click the Web Preview > Preview on port 8080 to see the results.
Deploy your app
To deploy your app to App Engine, run the following command from within the root directory of your application where the app.yaml file is located:
You will be prompted to enter where your App engine will be located.
Enter the number that represents your region. The App Engine application will then be created.
Example output:
Enter Y when prompted to confirm the details and begin the deployment of service.
Example output:
View your application
To launch your browser enter the following command, then click on the link it provides.
Example output, note that your link will be different:
Your application is deployed and you can read the short message in your browser.
Click Check my progress to verify the objective.
Test your knowledge
Test your knowledge about Google cloud Platform by taking our quiz. (Please select multiple correct options if necessary.)
Congratulations!
Finish Your Quest
Continue your Quest with Baseline: Deploy & Develop. A Quest is a series of related labs that form a learning path. Completing this Quest earns you the badge above, to recognize your achievement. You can make your badge (or badges) public and link to them in your online resume or social media account. Enroll in this Quest and get immediate completion credit if you've taken this lab. See other available Qwiklabs Quests.
Take Your Next Lab
This lab is also part of a series of labs called Qwik Starts. These labs are designed to give you a little taste of the many features available with Google Cloud. Search for "Qwik Starts" in the lab catalog to find the next lab you'd like to take!
Next Steps /Learn More
- Lean more about an App Engine with An Overview Of App Engine
- Try something else with an App Engine with Getting Started with Flask on App Engine Standard Environment
Google Cloud Training & Certification
...helps you make the most of Google Cloud technologies. Our classes include technical skills and best practices to help you get up to speed quickly and continue your learning journey. We offer fundamental to advanced level training, with on-demand, live, and virtual options to suit your busy schedule. Certifications help you validate and prove your skill and expertise in Google Cloud technologies.
Manual Last Updated March 14, 2022
Lab Last Tested March 14, 2022
Copyright 2022 Google LLC All rights reserved. Google and the Google logo are trademarks of Google LLC. All other company and product names may be trademarks of the respective companies with which they are associated.