.gitignore 3.1 KB

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