Gae Helloapp
Gae Helloapp
if __name__ == '__main__':
app.run(host='127.0.0.1', port=8080, debug=True)
II. requirements.txt
Flask
III. app.yaml
yaml
runtime: python39
entrypoint: gunicorn -b :$PORT main:app
3.Install dependencies:
pip install -r requirements.txt
4.Deploy to App Engine:
gcloud app create
gcloud app deploy
5.After deployment:
gcloud app browse
Result:
Thus the installation of google app engine and the creation of hello world
app using python/java has been successfully executed and output was verified.