.gitignore 3.4 KB

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