38 lines
439 B
Plaintext
38 lines
439 B
Plaintext
.venv/
|
|
.venv.bak/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
|
|
# 凭据与本地配置
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# 运行时产物
|
|
logs/
|
|
.probe/
|
|
|
|
# 测试不进镜像(Jenkinsfile 里单独跑)
|
|
tests/
|
|
|
|
# 仓库元数据与文档
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
.mcp.json
|
|
README.md
|
|
*.md
|
|
|
|
# CI / 部署文件本身
|
|
Dockerfile
|
|
.dockerignore
|
|
Jenkinsfile
|
|
docker-compose*.yml
|
|
deploy/ |