I am aiming to deploy a simple web-app written with Sreamlit, e.g.
app.py
import streamlit as st
st.title('Hello World!')
I can run this on my local machine by running streamlit run app.py
in my command line.
However, I'm not sure how to modify the app.yaml file in GCP's App Engine to deploy this.
Any advice?