登录
首页 >  文章 >  python教程

用于快速启动 Polylith 的 Cookiecutter

来源:dev.to

时间:2024-12-13 19:55:07 187浏览 收藏

哈喽!大家好,很高兴又见面了,我是golang学习网的一名作者,今天由我给大家带来一篇《用于快速启动 Polylith 的 Cookiecutter》,本文主要会讲到等等知识点,希望大家一起学习进步,也欢迎大家关注、点赞、收藏、转发! 下面就一起来看看吧!

用于快速启动 Polylith 的 Cookiecutter

向您展示一个python cookiecutter,用于在python 中快速启动polylith。如果您不知道什么是 polylith,请阅读文档,对于不耐烦的读者:

polylith 是一种软件架构,旨在构建简单、可维护、可测试和可扩展的后端系统。它通过在系统规模上应用功能思维来实现这一点,将代码视为可以组合成功能的构建块。

python-polylith 是允许我们在 python 中实现此功能的工具。

我不会详细介绍这种方法的优点。在本文中,我向您介绍诗歌-poly-cc,这是一个非常有主见的 cookiecutter,用于使用 python-polylith 启动项目。

您可以首先安装 cookiecutter 并使用以下命令生成项目:

cookiecutter https://github.com/ybenitezf/poetry-poly-cc.git

回答问题,你就很好了。你最终应该得到类似的结果:

.
├── license
├── readme.md
├── bases
├── build-packages.sh
├── components
├── development
│   └── __init__.py
├── poetry.toml
├── projects
├── pyproject.toml
├── update-locks.sh
└── workspace.toml

第一步包含在 readme.md 中:

  • 安装诗歌:https://python-poetry.org/docs/#installation
  • 添加多晶工具:https://davidvujic.github.io/python-polylith-docs/installation/

奔跑

git init
poetry install
# install pre-commit hook
poetry run pre-commit install
# install pre-commit dependencies
poetry run pre-commit run -a

包含什么

  1. poetry 配置为在项目文件夹中创建 virtualenv(请参阅诗歌.toml)
  2. pytest 作为测试依赖项添加,还包括 pytest 的一些好东西:pytest-mock、pytest-cov 和 pytest-asyncio
  3. 预提交和 ruff 作为开发依赖项。
  4. mypy 用于静态类型检查,与预提交集成
  5. 支持脚本 build-packages.sh 和 update-locks.sh
  6. 推荐的 vscode 扩展

今天关于《用于快速启动 Polylith 的 Cookiecutter》的内容就介绍到这里了,是不是学起来一目了然!想要了解更多关于的内容请关注golang学习网公众号!

声明:本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>