3

Can I download my App Engine source code from Google?

Deniss T.
  • 2,526
  • 9
  • 21
Zote
  • 5,343
  • 5
  • 41
  • 43
  • 1
    possible duplicate of [Can I restore my source code that has been uploaded into Google AppEngine?](http://stackoverflow.com/questions/2479087/can-i-restore-my-source-code-that-has-been-uploaded-into-google-appengine) – Nick Johnson Jun 23 '10 at 09:05
  • 1
    No. That one is duplicate of this. This is about one year old. – Zote Dec 06 '10 at 19:47

3 Answers3

3

Update: Google appengine now allows you to download the code

Documentation here.

(Duplicating answer from the duplicate thread)

Community
  • 1
  • 1
Alagu
  • 2,864
  • 3
  • 26
  • 40
2

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
  • 100,655
  • 16
  • 128
  • 198
1

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
  • 30,702
  • 30
  • 134
  • 179