威胁建造者
持续集成/持续交付 | |
包裹 | |
元 |
执行摘要
在您自己的系统上启动并运行您的代码。
笔记: 确保您满足要求.
-
安装过程:
$ cd threagile-builder $ hatch --version # optional, will print the version of our package to the terminal without modifying the source directory (e.g. `0.0.1`). # Without hatch: $ python src/threagile_builder/app.py $ hatch env create # optional, if the default env already exists you will be told $ hatch shell # spawn a shell within an environment (threagile-builder) $ pip show threagile-builder # optional, shows the project details, here 'threagile-builder', from `pyproject.toml` # Name: threagile-builder # Version: 0.0.1 # it takes this from src/threagile_builder/__about__.py # ... (threagile-builder) $ python -c "import sys;print(sys.executable)" # optional, see where your environment's python is located (threagile-builder) $ pip install --upgrade pip # optional, the `run` command allows you to execute commands in an environment as if you had already entered it. (threagile-builder) $ pip install -r requirements.txt # pipx won't do this (threagile-builder) $ python -m setuptools_scm # optional, display the version of our package and perform any side-effects like writing to a file. (here: `_version.py`) (threagile-builder) $ python src/threagile_builder/app.py # starts the app (threagile-builder) $ exit # optional, type `exit` to leave the environment
-
软件依赖性
-
最新版本
-
API参考
-
构建和测试:
要构建您的代码,请使用:
$ cd threagile-builder $ hatch build
要使用 AI 进行拉取请求审查,请使用:
https://app.coderabbit.ai/dashboard(使用
phpstan.neon
)要运行该应用程序,请使用:
Linux:
$ export SECRET_KEY="secret"
视窗:
$ setx SECRET_KEY secret
然后:
$ cd threagile-builder # Without hatch: $ python src/threagile_builder/app.py $ hatch run python src/threagile_builder/app.py
然后,导航至
http://127.0.0.1:5000/
在您的网络浏览器中。要运行测试,请使用:
$ cd threagile-builder $ pip install pytest # optional $ pytest tests/
导航至http://127.0.0.1:5000/docs
在您的网络浏览器中,或从以下位置下载 openapi.jsonhttp://127.0.0.1:5000/openapi.json
.
让 Prometheus 这样的工具刮擦http://127.0.0.1:9464/metrics
.
新的
目录
pip install threagile-builder
- 这孵化VCS版本源插件使用 Git 标签确定项目版本
- 整齐地定义在一个独立的
hatch.toml
- 这
test
矩阵使用孵化集装箱用于运行 Docker 容器内每个环境的插件;用法可以在测试GitHub 工作流程
- 所有构建目标都使用孵化VCS构建钩子插件来发送
_version.py
文件,以便可以在运行时使用该版本 - 轮子使用孵化 mypyc构建钩子插件以首先编译所有代码Mypyc
- 这建造GitHub 工作流程展示了如何:
- 使用cibuildwheel为每个平台分发二进制轮子
- 使用应用程序构建目标为每个平台构建独立发行版
threagile-builder
是根据以下条款分发的和执照。