.gitignore 877 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. # General
  2. .DS_Store
  3. Thumbs.db
  4. *.log
  5. tmp/
  6. temp/
  7. # Editor
  8. .idea/
  9. .vscode/
  10. *.swp
  11. *.swo
  12. # Python
  13. __pycache__/
  14. *.py[cod]
  15. *$py.class
  16. *.so
  17. .Python
  18. build/
  19. develop-eggs/
  20. dist/
  21. downloads/
  22. eggs/
  23. .eggs/
  24. lib/
  25. lib64/
  26. parts/
  27. sdist/
  28. var/
  29. wheels/
  30. share/python-wheels/
  31. *.egg-info/
  32. .installed.cfg
  33. *.egg
  34. MANIFEST
  35. # Python Virtual Environments (including uv)
  36. .env
  37. .venv/
  38. env/
  39. venv/
  40. ENV/
  41. env.bak/
  42. venv.bak/
  43. # Python Testing & Coverage
  44. .tox/
  45. .nox/
  46. .coverage
  47. .coverage.*
  48. .cache
  49. nosetests.xml
  50. coverage.xml
  51. *.cover
  52. *.py,cover
  53. .hypothesis/
  54. .pytest_cache/
  55. cover/
  56. # Python Type Checking
  57. .mypy_cache/
  58. .dmypy.json
  59. dmypy.json
  60. .pyre/
  61. # Node.js
  62. node_modules/
  63. npm-debug.log*
  64. yarn-debug.log*
  65. yarn-error.log*
  66. pnpm-debug.log*
  67. lerna-debug.log*
  68. # Frontend Build
  69. dist-ssr/
  70. *.local
  71. # Environment Variables
  72. .env
  73. .env.*
  74. !.env.example
  75. !.env.test
  76. # Project Specific (Preserved from original)
  77. docs/
  78. output/
  79. .github/