views:

218

answers:

2

Hi, can I download my appegine source code from google?

+1  A: 

Probably not. However, you can create a wrapper script around appcfg.py which will archive your source code and upload it along with everything else, then make that archive available on a protected part of the site.

An example of that is here.

a paid nerd
+1  A: 

You can't - App Engine is not a source control system. There are handlers available that will let you download your source code directly, if you set them in app.yaml when you uploaded your app. They can't include files marked static, however, since they are uploaded to a separate location.

Nick Johnson