如何一起使用github和ec2来部署python应用程序

发布于 2024-10-21 02:00:54 字数 183 浏览 3 评论 0原文

我目前正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

会傲 2024-10-28 02:00:54

我编写了一个 简单的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文