Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This seems like it should be very easy but I don't see a link to it anywhere.

How do I download the source code of a google app engine project?

share|improve this question
Duplicate: stackoverflow.com/questions/2479087/… – Nick Johnson Mar 23 '10 at 9:58
duplicate? more like quintuplet at least :) – Peter Recore Mar 23 '10 at 19:46
which suggests maybe google might consider making it easier - like by adding a menu option for this to the launcher tool – Ed Randall Apr 14 at 18:22

3 Answers

Windows

appengine-java-sdk\bin\appcfg.cmd -A <your_app_id>; -V <your_app_version> download_app <output-dir>

Linux

./appengine-java-sdk/bin/appcfg.sh -A <your_app_id> -V <your_app_version> download_app <output-dir>
share|improve this answer

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

share|improve this answer

You need to use svn to checkout the files.

If you are on Windows, you can use tortoise svn for your GUI end.

Here are tutorials on how to do it, here is the related question.

share|improve this answer
Why the downvote? – Graviton Mar 23 '10 at 3:13
2  
Because you are talking about Google Code, not Google App Engine. – Thilo Mar 23 '10 at 3:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.