.gitignore 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. # -----------------------------------------------------------------------------
  2. # Operating systems
  3. # -----------------------------------------------------------------------------
  4. .DS_Store
  5. .AppleDouble
  6. .LSOverride
  7. Thumbs.db
  8. Desktop.ini
  9. $RECYCLE.BIN/
  10. # -----------------------------------------------------------------------------
  11. # Editors and IDEs
  12. # -----------------------------------------------------------------------------
  13. .idea/
  14. .vscode/*
  15. !.vscode/extensions.json
  16. !.vscode/settings.json
  17. !.vscode/tasks.json
  18. !.vscode/launch.json
  19. *.code-workspace
  20. *.swp
  21. *.swo
  22. *~
  23. # -----------------------------------------------------------------------------
  24. # Local configuration, secrets, and environment variables
  25. # Keep templates such as .env.example in version control.
  26. # -----------------------------------------------------------------------------
  27. .env
  28. .env.*
  29. !.env.example
  30. !.env.sample
  31. !.env.template
  32. *.local
  33. # -----------------------------------------------------------------------------
  34. # Logs, temporary files, and runtime data
  35. # -----------------------------------------------------------------------------
  36. *.log
  37. logs/
  38. *.pid
  39. *.pid.lock
  40. *.seed
  41. *.tmp
  42. *.temp
  43. tmp/
  44. temp/
  45. .cache/
  46. # -----------------------------------------------------------------------------
  47. # Python
  48. # -----------------------------------------------------------------------------
  49. __pycache__/
  50. *.py[cod]
  51. *$py.class
  52. *.so
  53. # Virtual environments
  54. .venv/
  55. venv/
  56. env/
  57. ENV/
  58. # Packaging and builds
  59. build/
  60. dist/
  61. downloads/
  62. *.egg-info/
  63. .eggs/
  64. *.egg
  65. pip-wheel-metadata/
  66. wheelhouse/
  67. # Test, coverage, type-checker, and linter caches
  68. .pytest_cache/
  69. .coverage
  70. .coverage.*
  71. coverage.xml
  72. htmlcov/
  73. .tox/
  74. .nox/
  75. .hypothesis/
  76. .mypy_cache/
  77. .pyre/
  78. .pytype/
  79. .ruff_cache/
  80. # Framework and notebook artifacts
  81. *.mo
  82. *.pot
  83. instance/
  84. .scrapy/
  85. .ipynb_checkpoints/
  86. # -----------------------------------------------------------------------------
  87. # Node.js / JavaScript / TypeScript
  88. # -----------------------------------------------------------------------------
  89. node_modules/
  90. bower_components/
  91. # Package manager caches and diagnostics
  92. .npm/
  93. .yarn/cache/
  94. .yarn/unplugged/
  95. .yarn/build-state.yml
  96. .yarn/install-state.gz
  97. .pnpm-store/
  98. .pnp.*
  99. npm-debug.log*
  100. yarn-debug.log*
  101. yarn-error.log*
  102. pnpm-debug.log*
  103. # Build outputs and framework caches
  104. lib-cov/
  105. coverage/
  106. .nyc_output/
  107. .parcel-cache/
  108. .next/
  109. .nuxt/
  110. .output/
  111. .svelte-kit/
  112. .astro/
  113. .vite/
  114. .docusaurus/
  115. .serverless/
  116. .fusebox/
  117. .dynamodb/
  118. .turbo/
  119. .nx/
  120. out/
  121. # TypeScript incremental build information
  122. *.tsbuildinfo
  123. # -----------------------------------------------------------------------------
  124. # Miscellaneous generated artifacts
  125. # -----------------------------------------------------------------------------
  126. *.bak
  127. *.orig
  128. *.rej
  129. *.patch
  130. *.tgz