How to set up auto-deploy to AppEngine when pushing to Git Repository
问题 I've heard that other platforms support auto-deployment of their code to production when they push changes to their Git repository. Can I set up something similar to this for AppEngine? How? I'm using Python2.7 on Windows, and bitbucket as a repository. Thanks! 回答1: Since app engine deploy is just a python script, why can't you just write a shell script that calls 'git push' followed by 'python appcfg.py deploy'? Any bitbucket hooks that will send from bitbucket->appengine after you upload to