Reputation: 6029
Is it possible to download copies of our application's code from the Google App Engine servers?
Using appcfg.py
we upload the files. Wondering if there's something similar we can use to download the source code from App Engine?
For e.g. If we loose the source code locally, is it possible to get it from Google App Engine server where the python application is running?
Upvotes: 0
Views: 168
Reputation: 6175
Yes you can.
C:\Program Files\Google\google_appengine
appcfg.py download_app - A MyAppName -V 1 c:\AppEngine\SourceCode
It'll ask for your Google Account credentials and once authenticated, all the source code files will instantly download to the specified directory.
(from: http://www.labnol.org/software/download-appengine-files/19348/)
Upvotes: 0
Reputation: 10433
you can.. if it was not disabled by the admin
are you using python, java or go ?
also see ./appcfg.sh help download_app
Upvotes: 3