On Wed, Apr 15, 2015 at 7:49 AM, orijinal swq <[email protected]> wrote:
> I want to create an app that asks user's gmail email and password and > uploads a specific project. it is like cloning the project. is this > possible with python gae? > It's certainly possible; a similar flow is used by the C9 IDE when they deploy an App Engine application: https://c9.io/site/blog/2013/07/deploy-to-google-app-engine-with-cloud9-and-git/ However, C9 deploys using Git Push To Deploy - to replicate their method, you would need to run a git client in your application and that means you'll have to find a pure-Python implementation of git. You can try using this library: https://github.com/jelmer/dulwich which should work. Otherwise you can run any git library <https://libgit2.github.com/> within a Managed VM and use it to push to GAE's Push To Deploy repo. ----------------- -Vinny P Technology & Media Consultant Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/CALSvALAbYzUtJXa8MT_xbVU7K85wOkU0J%2BvUKMD9Bm_%3DCPetrQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
