How to change the application after deployment in Google App Engine?

I created one application in Eclipse . I deployed this application to Google App Engine . It has been successfully deployed. But now I want to make some changes to my application. Can I add changes? And one more doubt: is it possible to uninstall the application after deployment ?

+1
source share
2 answers

You need to deploy the entire application again.

You cannot selectively update parts of it.

However, you can use multiple versions at the same time, for example, to test the most recent changes before passing them on to the public. Each version is available through a different URL (versionName.latest.appName.appspot.com), and you can choose one of them by default (appName.appspot.com). However, keep in mind that all versions use the same data store and memcache.

So, do not delete the local copy of the application (and, more importantly, its source, if it is a Java application) after deployment.

You can remove the application from App Engine (from Google servers) using the admin console.

+7
source

If your python application uses appcfg.py like

 appcfg.py --email=youremail@email.com update . 

from the local directory of your application after making updates.

Follow these links for more information. Python: http://code.google.com/appengine/docs/python/tools/uploadinganapp.html Java: http://code.google.com/appengine/docs/java/tools/uploadinganapp.html

0
source

Source: https://habr.com/ru/post/898738/


All Articles