| 12345678910111213141516171819202122232425262728293031 |
- # ============================================================
- # Python
- # ============================================================
- .venv/
- __pycache__/
- *.py[cod]
- .pytest_cache/
- .ipynb_checkpoints/
- # ============================================================
- # 密钥——绝不能提交到仓库
- # ============================================================
- .env
- # ============================================================
- # Node / 前端
- # ============================================================
- frontend/node_modules/
- frontend/dist/
- # ============================================================
- # IDE
- # ============================================================
- .idea/
- .vscode/
- # ============================================================
- # 日志与生成的测试报告
- # ============================================================
- *.log
- reports/
|