Bar Chart Application On Google Cloud App Engine Part 2

Dev Thakkar
Nov 28, 2021

Continued from Part 1

Scenario: Review four weeks of multiple API transaction calls to identify slowdown in response times

Step 5: Test Local

#Run below commands> python -m venv env>  env\Scripts\activate.bat#start main.py
> python main.py
  • After server start open browser localhost:8080 and view bar chart

Step 6: Deploy to App Engine

  • From VS Code terminal run
> gcloud app deploy
  • Review App Engine version in Google Cloud
  • After App Deploy, open target url in browser
  • Formatted by adding X axis labels (using paint)

Step 7: Delete the project along with all resources (optional)

> gcloud projects delete responsegraph

--

--