1
0

.gitignore 3.3 KB

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