Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google App Engine access to code

Is it possible to access or download my code that is running on Google App Engine? For instance, say my hard drive crashes and I have not saved my code on any kind of external repository. Is there any way to recover?

like image 482
Wes Avatar asked Feb 27 '23 19:02

Wes


1 Answers

No, it is not possible. You compile your code on your machine and ship up the compiled code. If you have a source repository, always make sure that you have a backup.

GAE does not have a mechanism for you to download your binaries, so reverse engineering them is not possible except from your own copies.

Of course you could always host your project on GitHub or SourceForge

like image 143
Romain Hippeau Avatar answered May 20 '23 08:05

Romain Hippeau