Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I created one application in eclipse.I deployed that application in google app engine.It deployed successfully.But now i want to do some changes in my application.It is possible to do the changes.And also one more doubt possible to delete my appliction after done the deployement.

share|improve this question

2 Answers

up vote 5 down vote accepted

You need re-deploy the whole application again.

You cannot selectively update parts of it.

What you can do, however, is deploy many versions at the same time, for example to test the most recent changes before rolling it out to the public. Every version is accessible via a different URL (versionName.latest.appName.appspot.com), and you can choose one of them to be the default one (appName.appspot.com). Keep in mind, though, that all versions use the same data store and memcache.

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

You can delete the application from App Engine (from Google's servers) using the Admin Console.

share|improve this answer

If its a python app use the appcfg.py like this

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

from the local directory of your application after making the updates.

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.