Download the Google Cloud SDK installer from https://cloud.google.com/sdk/docs/install.
Install the SDK on your local machine. During installation, the SDK installer should prompt you to log in with your Google account and authorize it.
Initialize the SDK by opening your command-line interface and running
gcloud init
Create an app.yaml file in the root directory of the project
runtime: python39
entrypoint: gunicorn -b :$PORT main:app
Deploy to Google App Engine by running:
gcloud app deploy
Download the Google Cloud SDK installer from https://cloud.google.com/sdk/docs/install. Install the SDK on your local machine. During installation, the SDK installer should prompt you to log in with your Google account and authorize it.
Initialize the SDK by opening your command-line interface and running
gcloud init
Create an app.yaml file in the root directory of the project runtime: python39 entrypoint: gunicorn -b :$PORT main:app
Deploy to Google App Engine by running: gcloud app deploy