.gitignore 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. # Logs
  2. logs
  3. *.log
  4. npm-debug.log*
  5. yarn-debug.log*
  6. yarn-error.log*
  7. pnpm-debug.log*
  8. lerna-debug.log*
  9. # OS generated files
  10. .DS_Store
  11. .DS_Store?
  12. ._*
  13. .Spotlight-V100
  14. .Trashes
  15. ehthumbs.db
  16. Thumbs.db
  17. # IDE files
  18. .idea/
  19. .vscode/
  20. *.suo
  21. *.ntvs*
  22. *.njsproj
  23. *.sln
  24. *.sw?
  25. # Optional backend venv (if created in root)
  26. #.venv/
  27. # Byte-compiled / optimized / DLL files
  28. __pycache__/
  29. *.py[cod]
  30. *$py.class
  31. uv.lock
  32. # C extensions
  33. *.so
  34. # Distribution / packaging
  35. .Python
  36. build/
  37. develop-eggs/
  38. dist/
  39. downloads/
  40. eggs/
  41. .eggs/
  42. lib64/
  43. parts/
  44. sdist/
  45. var/
  46. wheels/
  47. share/python-wheels/
  48. *.egg-info/
  49. .installed.cfg
  50. *.egg
  51. MANIFEST
  52. # PyInstaller
  53. # Usually these files are written by a python script from a template
  54. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  55. *.manifest
  56. *.spec
  57. # Installer logs
  58. pip-log.txt
  59. pip-delete-this-directory.txt
  60. # Unit test / coverage reports
  61. htmlcov/
  62. .tox/
  63. .nox/
  64. .coverage
  65. .coverage.*
  66. .cache
  67. nosetests.xml
  68. coverage.xml
  69. *.cover
  70. *.py,cover
  71. .hypothesis/
  72. .pytest_cache/
  73. cover/
  74. # Translations
  75. *.mo
  76. *.pot
  77. # Django stuff:
  78. *.log
  79. local_settings.py
  80. db.sqlite3
  81. db.sqlite3-journal
  82. # Flask stuff:
  83. instance/
  84. .webassets-cache
  85. # Scrapy stuff:
  86. .scrapy
  87. # Sphinx documentation
  88. docs/_build/
  89. # PyBuilder
  90. .pybuilder/
  91. target/
  92. # Jupyter Notebook
  93. .ipynb_checkpoints
  94. # IPython
  95. profile_default/
  96. ipython_config.py
  97. # pyenv
  98. # For a library or package, you might want to ignore these files since the code is
  99. # intended to run in multiple environments; otherwise, check them in:
  100. # .python-version
  101. # pipenv
  102. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  103. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  104. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  105. # install all needed dependencies.
  106. #Pipfile.lock
  107. # poetry
  108. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  109. # This is especially recommended for binary packages to ensure reproducibility, and is more
  110. # commonly ignored for libraries.
  111. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  112. #poetry.lock
  113. # pdm
  114. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  115. #pdm.lock
  116. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  117. # in version control.
  118. # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
  119. .pdm.toml
  120. .pdm-python
  121. .pdm-build/
  122. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  123. __pypackages__/
  124. # Celery stuff
  125. celerybeat-schedule
  126. celerybeat.pid
  127. # SageMath parsed files
  128. *.sage.py
  129. # Environments
  130. .env
  131. .venv
  132. env/
  133. venv/
  134. ENV/
  135. env.bak/
  136. venv.bak/
  137. # Spyder project settings
  138. .spyderproject
  139. .spyproject
  140. # Rope project settings
  141. .ropeproject
  142. # mkdocs documentation
  143. /site
  144. # mypy
  145. .mypy_cache/
  146. .dmypy.json
  147. dmypy.json
  148. # Pyre type checker
  149. .pyre/
  150. # pytype static type analyzer
  151. .pytype/
  152. # Cython debug symbols
  153. cython_debug/
  154. # PyCharm
  155. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  156. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  157. # and can be added to the global gitignore or merged into this file. For a more nuclear
  158. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  159. #.idea/
  160. backend/.langgraph_api