| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- # =============================================================================
- # 检澜 DockScope — 仓库根 .gitignore(推送远程前勿提交密钥与本地构建产物)
- # =============================================================================
- # ----- 环境变量与密钥(务必忽略;团队用 .env.example 约定变量名) -----
- .env
- .env.*.local
- # ----- 操作系统 -----
- .DS_Store
- Thumbs.db
- Desktop.ini
- # ----- 编辑器 / IDE -----
- .idea/
- *.suo
- *.ntvs*
- *.njsproj
- *.sln
- *.sw?
- *.swp
- *.swo
- # VS Code:默认忽略个人配置,需要团队共享时可取消注释下面两行
- .vscode/*
- !.vscode/extensions.json
- # ----- Node(根目录编排脚本、前端等任意位置的 node_modules) -----
- node_modules/
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- pnpm-debug.log*
- lerna-debug.log*
- .pnpm-store/
- *.tsbuildinfo
- # ----- 全仓库前端构建 -----
- dist/
- dist-ssr/
- # ----- Python(后端与任意脚本) -----
- __pycache__/
- *.py[cod]
- *$py.class
- .Python
- *.so
- .venv/
- venv/
- ENV/
- env/
- *.egg-info/
- .eggs/
- pip-wheel-metadata/
- *.egg
- .pytest_cache/
- .mypy_cache/
- .ruff_cache/
- .coverage
- htmlcov/
- .tox/
- .nox/
- # ----- 日志 -----
- logs/
- *.log
- # ----- 测试与覆盖率 -----
- coverage/
- .cypress/
- cypress/videos/
- cypress/screenshots/
- # ----- 临时与缓存 -----
- .cache/
- .temp/
- tmp/
- *.tmp
- *.bak
- *.orig
- # ----- 可选:本地 Docker / 数据卷目录名(若在仓库根创建) -----
- mysql_data/
|