.gitignore 3.1 KB

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