Google App Engine - Download the entire live application to your local

I recently upload a web app in my local app on Google App Engine

c:\LocalProject>c:\appengine-java-sdk-1.2.2\bin\appcfg.cmd update . 

Unfortunately, I accidentally delete the entire "LocalProject" folder on my local drive. Is it possible that I can recover all my stuff by downloading from the Google App Engine?

+6
google-app-engine
source share
3 answers

Not. There are libraries that you can include in the application to download the source code, but if you did not do this when you downloaded the application, there is no way to download the source code.

+6
source share

The app engine actually recently added the ability of the developer to download this version of the application to download the source code:

http://code.google.com/appengine/docs/python/tools/uploadinganapp.html#Downloading_Source_Code

+11
source share

That's what source control systems like Subversion and Git are for. You should use it, even for your home projects.

+4
source share

All Articles