20 lines
848 B
Markdown
20 lines
848 B
Markdown
|
|
# MB FST data production line infra code base
|
||
|
|
|
||
|
|
this repo include all FST data production line code, include cloud infra scripts, micro service apps, pipelines code, tool scripts and sql. overall structure:
|
||
|
|
|
||
|
|
```
|
||
|
|
fst_data_pipeline/
|
||
|
|
├── config # 统一配置管理 (YAML/ENV文件)
|
||
|
|
├── fst_data_pipeline # python source code package
|
||
|
|
│ ├── apps # 所有微服务应用
|
||
|
|
│ ├── core # shared lib and utils
|
||
|
|
│ ├── pipelines # 所有数据自动化处理pipeline
|
||
|
|
├── infra # 基础设施定义 (Docker file/Terraform/K8s)
|
||
|
|
├── scripts # 非自动化的工具脚本
|
||
|
|
├── pyproject.toml # 项目toml
|
||
|
|
├── code_format_all.sh # 代码格式化和lint检查脚本
|
||
|
|
├── README.md
|
||
|
|
└── uv.lock
|
||
|
|
```
|
||
|
|
|