如何一起使用github和ec2来部署python应用程序
我目前正在使用 github 开发 python 应用程序,并希望将其部署在 EC2 上。
有没有一种好的方法可以自动处理由此带来的混乱(在 github 的 EC2 实例上设置 SSH 密钥对,每次将提交推送到 master 分支时从 github 存储库中提取数据等),而无需使用一堆自定义脚本?或者,是否有一个专注于此的开源项目?
I am currently using github to develop a python application and am looking to deploy it on EC2.
Is there a good way to automatically handle the messiness this entails (setting up SSH key pairs on the EC2 instance for github, pulling from the github repository every time a commit is pushed to the master branch, etc.) without a bunch of custom scripts? Alternatively, is there an open-source project that has focused on this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我编写了一个 简单的 python 脚本来执行此操作一次。我还在我的博客上发布了相关内容。
您设置存储库和分支的映射以指向已包含该存储库和分支的签出的本地文件夹。然后,您启用 GitHub 的 post-receive 挂钩来命中脚本,该脚本将自动触发相应文件夹中的 git pull 。
I wrote a simple python script to do this once. I also posted about it on my blog.
You set up mappings of your repositories and brances to point to local folders which already contain a checkout of that repo and branch. Then, you enable GitHub's post-receive hooks to hit the script which will then automatically trigger a
git pull
in the appropriate folder.