Any file deployed to App Engine cannot be altered afterwards. App Engine will copy your deployed files to every instance is starts up. Therefore logging into one instance and editing a file will not alter any other instance's files.
If you require the need to make changes to files after deployment, it is recommended to redeploy your application. If you instead have a static resource that requires the need to be changed live in production, you should host the file off of App Engine such as on Google Cloud Storage <https://cloud.google.com/storage/>, and simply have your App Engine code fetch the file <https://cloud.google.com/appengine/docs/standard/python/googlecloudstorageclient/read-write-to-cloud-storage> whenever it needs to use it. - If you are only hosting a static website without the need to run any scripts or code, you can simply host your entire static site on Google Cloud Storage <https://cloud.google.com/storage/docs/hosting-static-website> . -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/6be964b8-88e1-487c-af56-c3872b2a4df8%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
