.gitignore 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. # Django #
  2. *.log
  3. *.pot
  4. *.pyc
  5. __pycache__/
  6. local_settings.py
  7. db.sqlite3
  8. db.sqlite3-journal
  9. media/
  10. # If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
  11. # in your Git repository. Update and uncomment the following line accordingly.
  12. # <django-project-name>/staticfiles/
  13. # Python #
  14. *.py[cod]
  15. *$py.class
  16. *.so
  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. # Django stuff #
  60. *.log
  61. # Flask stuff #
  62. instance/
  63. .webassets-cache
  64. # Scrapy stuff #
  65. .scrapy
  66. # Sphinx documentation #
  67. docs/_build/
  68. # PyBuilder #
  69. .pybuilder/
  70. target/
  71. # Jupyter Notebook #
  72. .ipynb_checkpoints
  73. # IPython #
  74. profile_default/
  75. ipython_config.py
  76. # pyenv #
  77. # For a library or package, you might want to ignore these files since the code is
  78. # intended to run in multiple environments; otherwise, check them in:
  79. # .python-version
  80. # pipenv #
  81. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  82. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  83. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  84. # install all needed dependencies.
  85. #Pipfile.lock
  86. # poetry #
  87. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  88. # This is especially recommended for binary packages to ensure reproducibility, and is more
  89. # commonly ignored for libraries.
  90. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  91. #poetry.lock
  92. # pdm #
  93. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  94. #pdm.lock
  95. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  96. # in version control.
  97. # https://pdm.fming.dev/#use-with-ide
  98. .pdm.toml
  99. # PEP 582 #
  100. # Used by PEP 582; https://github.com/David-OConnor/pyflow and https://github.com/pdm-project/pdm
  101. __pypackages__/
  102. # Celery stuff #
  103. celerybeat-schedule
  104. celerybeat.pid
  105. # SageMath parsed files #
  106. *.sage.py
  107. # Environments #
  108. .env
  109. .venv
  110. env/
  111. venv/
  112. ENV/
  113. env.bak/
  114. venv.bak/
  115. # Spyder project settings #
  116. .spyderproject
  117. .spyproject
  118. # Rope project settings #
  119. .ropeproject
  120. # mkdocs documentation #
  121. /site
  122. # mypy #
  123. .mypy_cache/
  124. .dmypy.json
  125. dmypy.json
  126. # Pyre type checker #
  127. .pyre/
  128. # pytype static type analyzer #
  129. .pytype/
  130. # Cython debug symbols #
  131. cython_debug/
  132. # PyCharm #
  133. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  134. # be added to the global gitignore or merged into this project gitignore. For a PyCharm
  135. # project, it is generally recommended to include the entire .idea directory.
  136. .idea/
  137. # VS Code #
  138. .vscode/
  139. # Sublime Text #
  140. *.sublime-project
  141. *.sublime-workspace
  142. # Vim #
  143. *.swp
  144. *.swo
  145. *~
  146. # macOS #
  147. .DS_Store
  148. .AppleDouble
  149. .LSOverride
  150. # Windows #
  151. Thumbs.db
  152. ehthumbs.db
  153. Desktop.ini
  154. $RECYCLE.BIN/
  155. # Secrets #
  156. *.pem
  157. *.key
  158. secrets.json