Where are appengine projects located normally in the file system of the server via ssh?

跟風遠走 提交于 2019-12-13 04:33:16

问题


I have a standard java based web application and I have someone who wants to take a look at it and possibly change a file or add a file via ssh. But we cannot locate the project folder of the appengine project in Google's cloud shell. So where exactly are app engine project files normally located?


回答1:


You cannot directly access the app's files from the cloud shell because the cloud shell doesn't run on the same instance as your app code.

In the standard environment you also can't access the actual instance executing the app code (this is possible in the flexible environment), see also Accessing Google App Engine Python App code in production.

You can view the live/deployed version of your app service code using StackDriver, as described in Google Cloud DataStore automatic indexing. From that viewer StackDriver also allows debugging/inspecting the live code:

AFAIK you cannot change the live code, you need to deploy an updated version of the code for that.



来源:https://stackoverflow.com/questions/50350813/where-are-appengine-projects-located-normally-in-the-file-system-of-the-server-v

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!