Python Web 项目剖析:开发、打包、部署

发布于 2024-09-01 15:35:12 字数 412 浏览 5 评论 0原文

我是 Python 新手(来自 Java+Ant),想知道是否有人可以详细说明如何最好地使用 Fabric+Pip+Virtualenv 来设置 Python Web 应用程序包框架。

最终目标是能够使用单个命令执行以下任何操作:

  • 在新的开发盒上设置开发环境(安装所有 deps)
  • 运行所有测试
  • 打包并部署到暂存
  • 将暂存部署到生产
  • 其他典型的开发流程任务:迁移架构等。

我正在使用 Debian+git+Tornado,但如果可能的话,我希望保持此操作系统/SCM/框架的不可知性。

我已经做了一些搜索,但还没有找到从上到下涵盖这一点的明确内容。我会发现这非常有帮助,我想还有一些其他前 Java/PHP/其他人也会这么做。

谢谢!

I'm new to Python (from Java+Ant) and was wondering if someone could detail how to best use Fabric+Pip+Virtualenv to set up a Python web application package skeleton.

The end goal is to be able to do any of the following with a single command:

  • Set up a development environment on a fresh dev box (installing all deps)
  • Run all tests
  • Package and deploy to staging
  • Deploy staging to production
  • Other typical dev flow tasks: migrate schema, etc.

I'm using Debian+git+Tornado, but I'd like to keep this OS/SCM/framework agnostic if possible.

I've done some searching but I'm yet to find something definitive that covers this from top to bottom. I would find this very helpful, I imagine there are a few other ex-Java/PHP/whatever guys out there who would too.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

毅然前行 2024-09-08 15:35:12

此处查看我的答案。它并没有解决您的所有问题(实际上主要是第一个要点),但希望它可以帮助您开始。

Check out my answer here. It doesn't address all of your questions (mostly the first bullet-point, in fact), but hopefully it gets you started.

梦中楼上月下 2024-09-08 15:35:12

保持框架不可知可能会非常困难。

但也许您会发现以下粘贴模板(不过对于 Django 项目)也非常有用。 http://morethanseven.net/2010/03/28/ More-django-project-templates.html

虽然 Paster 的学习曲线相当长(至少从我的角度来看),但它会很好地满足您对“项目骨架”的需求。实际上,使用 Paster 模板,您可以实现与 Maven Archetypes 为您所做的类似的事情。

Keeping it framework agnostic will probably be quite hard.

But maybe you'll find the following paster templates (for Django projects though) quite useful too. http://morethanseven.net/2010/03/28/More-django-project-templates.html

Though Paster has quite a learning curve (at least from my point of view), it'll cover your needs for "project skeletons" quite nicely. Actually, with Paster templates, you can achieve similar things to what Maven Archetypes do for you.

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