.gitignore 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # =============================================================================
  2. # 检澜 DockScope — 仓库根 .gitignore(推送远程前勿提交密钥与本地构建产物)
  3. # =============================================================================
  4. # ----- 环境变量与密钥(务必忽略;团队用 .env.example 约定变量名) -----
  5. .env
  6. .env.*.local
  7. # ----- 操作系统 -----
  8. .DS_Store
  9. Thumbs.db
  10. Desktop.ini
  11. # ----- 编辑器 / IDE -----
  12. .idea/
  13. *.suo
  14. *.ntvs*
  15. *.njsproj
  16. *.sln
  17. *.sw?
  18. *.swp
  19. *.swo
  20. # VS Code:默认忽略个人配置,需要团队共享时可取消注释下面两行
  21. .vscode/*
  22. !.vscode/extensions.json
  23. # ----- Node(根目录编排脚本、前端等任意位置的 node_modules) -----
  24. node_modules/
  25. npm-debug.log*
  26. yarn-debug.log*
  27. yarn-error.log*
  28. pnpm-debug.log*
  29. lerna-debug.log*
  30. .pnpm-store/
  31. *.tsbuildinfo
  32. # ----- 全仓库前端构建 -----
  33. dist/
  34. dist-ssr/
  35. # ----- Python(后端与任意脚本) -----
  36. __pycache__/
  37. *.py[cod]
  38. *$py.class
  39. .Python
  40. *.so
  41. .venv/
  42. venv/
  43. ENV/
  44. env/
  45. *.egg-info/
  46. .eggs/
  47. pip-wheel-metadata/
  48. *.egg
  49. .pytest_cache/
  50. .mypy_cache/
  51. .ruff_cache/
  52. .coverage
  53. htmlcov/
  54. .tox/
  55. .nox/
  56. # ----- 日志 -----
  57. logs/
  58. *.log
  59. # ----- 测试与覆盖率 -----
  60. coverage/
  61. .cypress/
  62. cypress/videos/
  63. cypress/screenshots/
  64. # ----- 临时与缓存 -----
  65. .cache/
  66. .temp/
  67. tmp/
  68. *.tmp
  69. *.bak
  70. *.orig
  71. # ----- 可选:本地 Docker / 数据卷目录名(若在仓库根创建) -----
  72. mysql_data/