I'm doing some refactoring of my entities and I'd like to temporarily shut down all access to my app engine app (except for admin) to prevent users modifying any entities while I am performing the maintenance.
What is a straightforward way to do this? The only easy way I can think of is to create a new app.yaml
file where admin is required for all pages. One downside to this is that I wouldn't be able to give users a friendly message that access will be restored soon.
Any better ways of doing this?