I'm a little bit paranoid but for most of my projects, I always use : - a CVS,... - zipme, to download the current python files,.. http://www.manatlan.com/blog/zipme___download_sources_of_your_gae_website__as_a_zip_file - a batch to automaticaly zip/upload the sources with my project.
For this last point, I've added a request : http://code.google.com/p/googleappengine/issues/detail?id=831 "Add a flag to appcfg.py to zip/upload the sources" Currently, I use something like this. --- START BAT --- 7za a -tzip src\source.zip src\ -xr!*.pyc appcfg.py update src/ --- END BAT --- ---- APP.YAML --- - url: /source.zip static_files: source.zip upload: source.zip login: admin ---------------------- On Feb 18, 8:32 am, kang <[email protected]> wrote: > I use dropbox to back up my app engine source code. I put the app engine > code in a dropbox folder. > > > > On Thu, Feb 18, 2010 at 2:02 AM, Renee Maier <[email protected]> wrote: > > I was wondering if there is a way to download the source code from my > > app engine project? My hard drive crashed on my Mac and I (stupidly) > > did not have the source backed up. > > > Thanks! > > > -- > > You received this message because you are subscribed to the Google Groups > > "Google App Engine" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]<google-appengine%[email protected]> > > . > > For more options, visit this group at > >http://groups.google.com/group/google-appengine?hl=en. > > -- > Stay hungry,Stay foolish. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
