I'm developing a web app to deploy on Google Cloud's App Engine. When I make some changes dev_appserver.py
sees them (console says Detected file changes
) but those change don't go live, i.e. even if I refresh the page I still see the old code. For the new code to be visible I need to kill the process and restart dev_appserver.py
.
Is there any way around this?
My app.yalm
file:
runtime: python37
I'm developing the app using Flask.