I need to download the application files that are deployed using command prompt into google appengine server. if anybody know about this plz tell me!
thanks in advance!
|
I need to download the application files that are deployed using command prompt into google appengine server. if anybody know about this plz tell me! thanks in advance! |
|||||
|
|
SDK 1.4.0 has this sort of feature (Python only):
Note that although the 'download_app' command is only available in the Python SDK, it can be used to download Java applications from App Engine. If you have a Java app that you want to download, just do:
|
|||||||
|
|
It's not possible to download your code from App Engine, unless you included code to support it when you uploaded your app. You can download static files by simply fetching them, of course. To achieve this, you need to use a source control system, such as SVN or Git, and store/retrieve your code from there - App Engine isn't intended to act as source control. |
|||||
|
|
You can use appcfg.sh / appcfg.cmd in your GAE SDK, as pointed out in this official guide. But notice that as of 2012-05-07, at least for the Windows version appcfg.cmd, the command's syntax is
Also notice that when you run this command and you get asked for your password and you happen to have activated Google's 2-step verification, you must not provide your Google password, but instead must provide an application-specific password (which you can generate on this side) |
|||
|
|
As explained in this post: http://www.labnol.org/software/download-appengine-files/19348/ App Engine 1.5.0 introduced the feature to download your source code. The command is:
|
||||
|
|
|
You can use appcfg.py with *download_data* option, http://code.google.com/appengine/docs/python/tools/uploadingdata.html#Downloading_Data_from_App_Engine |
|||
|
|
|
You can download an application's source code by running appcfg.py with the download_app action in the Python SDK command-line tool:
|
|||
|
|
|
Have a look at this link, this can help https://developers.google.com/appengine/docs/python/tools/uploadinganapp |
|||
|
|