Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google App Engine - Download Entire Live Application To Local

Recently, I upload the web application in my local to Google App Engine

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

Unfortunately, I accidental delete the whole folder "LocalProject" in my local disk. Is it possible that I can recover all my stuff, by downloading from Google App Engine?

like image 950
Cheok Yan Cheng Avatar asked Oct 02 '09 08:10

Cheok Yan Cheng


3 Answers

app engine actually recently added the ability for the developer who uploaded a given app version to download its source code:

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

like image 193
ryan Avatar answered Sep 22 '22 20:09

ryan


No. There are libraries you can include with your app to make the source code downloadable, but if you didn't do so when you uploaded your app, there's no way to download the source code.

like image 31
Nick Johnson Avatar answered Sep 24 '22 20:09

Nick Johnson


This is what source code management systems like Subversion and Git are for. You should be using one, even for your home projects.

like image 24
duffymo Avatar answered Sep 25 '22 20:09

duffymo