Develop Serverless Apps with Firebase: Challenge Lab - GSP344

Develop Serverless Apps with Firebase: Challenge Lab - GSP344

Overview

In a challenge lab you’re given a scenario and a set of tasks. Instead of following step-by-step instructions, you will use the skills learned from the labs in the course to figure out how to complete the tasks on your own! An automated scoring system (shown on this page) will provide feedback on whether you have completed your tasks correctly.

When you take a challenge lab, you will not be taught new Google Cloud concepts. You are expected to extend your learned skills, like changing default values and reading and researching error messages to fix your own mistakes.

To score 100% you must successfully complete all tasks within the time period!

This lab is recommended for students who are enrolled in the Develop Serverless Apps with Firebase course. Are you ready for the challenge?

Setup and requirements

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 are made available to you.

This hands-on lab lets you do the lab activities in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials you use to sign in and access Google Cloud for the duration of the lab.

To complete this lab, you need:

  • Access to a standard internet browser (Chrome browser recommended).

Note: Use an Incognito (recommended) or private browser window to run this lab. This prevents conflicts between your personal account and the student account, which may cause extra charges incurred to your personal account.

  • Time to complete the lab—remember, once you start, you cannot pause a lab.

Note: Use only the student account for this lab. If you use a different Google Cloud account, you may incur charges to that account.

Provision the environment

  1. Link to the project:
  gcloud config set project $(gcloud projects list --format='value(PROJECT_ID)' --filter='qwiklabs-gcp')

Copied!

  1. Clone the repo:
  git clone https://github.com/rosera/pet-theory.git

Copied!

Challenge scenario

In this lab you will create a frontend solution using a Rest API and Firestore database. Cloud Firestore is a NoSQL document database that is part of the Firebase platform where you can store, sync, and query data for your mobile and web apps at scale. Lab content is based on resolving a real world scenario through the use of Google Cloud serverless infrastructure.

You will build the following architecture:

Application architecture diagram

Task 1. Create a Firestore database

In this scenario you create a Firestore Database in Google Cloud. The high level architecture diagram below summarizes the general architecture.

Firebase Challenge Lab architecture diagram

Requirements:

FieldValue
Cloud FirestoreNative Mode
Locationeurope-west4

Create a Firestore database

To complete this section successfully, you are required to implement the following:

  • Cloud Firestore Database

  • Use Firestore Native Mode

  • Add location europe-west4

Click Check my progress to verify that you've performed the above task.

Create a Firestore Database

Task 2. Populate the database

In this scenario, populate the database using test data.

A high level architecture diagram below summarizes the general architecture.

Firebase Challenge Lab architecture

Populate the database

Example Firestore schema:

CollectionDocumentField
data70234439[dataset]

The Netflix Shows Dataset includes the following information:

FieldDescription
show_id:Unique ID for every Movie / Tv Show
type:Identifier - A Movie or TV Show
title:Title of the Movie / Tv Show
director:Director of the Movie
cast:Actors involved in the movie / show
country:Country where the movie / show was produced
date_added:Date it was added on Netflix
release_year:Actual Release year of the move / show
rating:TV Rating of the movie / show
duration:Total Duration - in minutes or number of seasons

To complete this section successfully, you are required to implement the following tasks:

  1. Use the sample code from pet-theory/lab06/firebase-import-csv/solution:
  npm install

Copied!

  1. To import CSV use the node pet-theory/lab06/firebase-import-csv/solution/index.js:
  node index.js netflix_titles_original.csv

Copied!

Note: Verify the Firestore Database has been updated by viewing the data in the Firestore UI.

Click Check my progress to verify that you've performed the above task.

Populate the Firestore Database

Task 3. Create a REST API

In this scenario, create an example REST API.

A high level architecture diagram below summarizes the general architecture.

Firebase Challenge Lab architecture diagram

Cloud Run development

FieldValue
Container Registry Imagerest-api:0.1
Cloud Run Servicenetflix-dataset-service
Permission--allow-unauthenticated

To complete this section successfully, you are required to implement the following tasks:

  1. Access pet-theory/lab06/firebase-rest-api/solution-01.

  2. Build and Deploy the code to Google Container Registry.

  3. Deploy the image as a Cloud Run service.

Note: Deploy your service with 1 max instance to ensure you do not exceed the max limit for Cloud Run instances.

  1. Go to Cloud Run and click netflix-dataset-service then copy the service URL:
  • SERVICE_URL=copy url from your netflix-dataset-service

  • curl -X GET $SERVICE_URL should respond with: {"status":"Netflix Dataset! Make a query."}

Click Check my progress to verify that you've performed the above task.

Deploy and test the REST API

Task 4. Firestore API access

In this scenario, deploy an updated revision of the code to access the Firestore DB.

A high level architecture diagram below summarizes the general architecture.

Firebase Challenge Lab architecture diagram

Deploy Cloud Run revision 0.2

FieldValue
Container Registry Imagerest-api:0.2
Cloud Run Servicenetflix-dataset-service
Permission--allow-unauthenticated

To complete this section successfully, you are required to implement the following tasks:

  1. Access pet-theory/lab06/firebase-rest-api/solution-02.

  2. Build the updated application.

  3. Use Cloud Build to tag and deploy image revision to Container Registry.

  4. Deploy the new image a Cloud Run service.

Note: Deploy your service with 1 max instance to ensure you do not exceed the max limit for Cloud Run instances.

  1. Go to Cloud Run and click netflix-dataset-service then copy the service URL:
  • SERVICE_URL=copy url from your netflix-dataset-service

  • curl -X GET $SERVICE_URL/2019 should respond with json dataset

Click Check my progress to verify that you've performed the above task.

Deploy and test the Rest API

Task 5. Deploy the Staging Frontend

In this scenario, deploy the Staging Frontend.

A high level architecture diagram below summarizes the general architecture.

Firebase Challege Lab architecture diagram

Deploy Frontend

FieldValue
REST_API_SERVICEREST API SERVICE URL
Container Registry Imagefrontend-staging:0.1
Cloud Run Servicefrontend-staging-service

To complete this section successfully, you are required to implement the following tasks:

  1. Access pet-theory/lab06/firebase-frontend.

  2. Build the frontend staging application.

  3. Use Cloud Build to tag and deploy image revision to Container Registry.

  4. Deploy the new image as a Cloud Run service.

Note: Deploy your service with 1 max instance to ensure you do not exceed the max limit for Cloud Run instances.

  1. Frontend access to Rest API and Firestore Database.

  2. Access the Frontend Service URL.

Note: It's using a demo dataset to provide the onscreen entries.

Introduction to Serverless web page

Click Check my progress to verify that you've performed the above task.

Deploy the staging frontend

Task 6. Deploy the Production Frontend

In this scenario, update the Staging Frontend to use the Firestore database.

A high level architecture diagram below summarizes the general architecture.

Firebase Challege Lab architecture diagram

Deploy Frontend

FieldValue
REST_API_SERVICEREST API SERVICE URL
Container Registry Imagefrontend-production:0.1
Cloud Run Servicefrontend-production-service

To complete this section successfully, you are required to implement the following tasks:

  1. Access pet-theory/lab06/firebase-frontend/public.

  2. Update the frontend application i.e. app.js to use the REST API.

  3. Don't forget to append the year to the SERVICE_URL.

  4. Use Cloud Build to tag and deploy image revision to Container Registry.

  5. Deploy the new image a Cloud Run service.Note: Deploy your service with 1 max instance to ensure you do not exceed the max limit for Cloud Run instances.

  6. Frontend access to Rest API and Firestore Database.

Now that the services have been deployed you will be able to see the contents of the Firestore database using the frontend service.

Introduction to Serverless web page

Click Check my progress to verify that you've performed the above task.

Deploy the production frontend


Solution of Lab

New Solution

curl -LO raw.githubusercontent.com/ePlus-DEV/storage/refs/heads/main/labs/GSP344/lab.sh
source lab.sh

Script Alternative

curl -LO raw.githubusercontent.com/Techcps/Google-Cloud-Skills-Boost/master/Develop%20Serverless%20Apps%20with%20Firebase%3A%20Challenge%20Lab/techcps344.sh
sudo chmod +x techcps344.sh
./techcps344.sh

Old Solution

export REGION=
export SERVICE_NAME=netflix-dataset-service
export FRONTEND_STAGING_SERVICE_NAME=frontend-staging-service
export FRONTEND_PRODUCTION_SERVICE_NAME=frontend-production-service

curl -LO raw.githubusercontent.com/quiccklabs/Labs_solutions/master/AUGUST%20Serverless%20Firebase%20Development%20Challenge%20Lab/quicklabgsp344.sh
sudo chmod +x quicklabgsp344.sh
./quicklabgsp344.sh