.gitignore 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. # Created by https://www.toptal.com/developers/gitignore/api/django
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=django
  3. ### Django ###
  4. *.log
  5. *.pot
  6. *.pyc
  7. __pycache__/
  8. local_settings.py
  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. ### Django.Python Stack ###
  14. # Byte-compiled / optimized / DLL files
  15. *.py[cod]
  16. *$py.class
  17. # C extensions
  18. *.so
  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. # Django stuff:
  63. # Flask stuff:
  64. instance/
  65. .webassets-cache
  66. # Scrapy stuff:
  67. .scrapy
  68. # Sphinx documentation
  69. docs/_build/
  70. # PyBuilder
  71. .pybuilder/
  72. target/
  73. # Jupyter Notebook
  74. .ipynb_checkpoints
  75. # IPython
  76. profile_default/
  77. ipython_config.py
  78. # pyenv
  79. # For a library or package, you might want to ignore these files since the code is
  80. # intended to run in multiple environments; otherwise, check them in:
  81. # .python-version
  82. # pipenv
  83. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  84. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  85. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  86. # install all needed dependencies.
  87. #Pipfile.lock
  88. # poetry
  89. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  90. # This is especially recommended for binary packages to ensure reproducibility, and is more
  91. # commonly ignored for libraries.
  92. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  93. #poetry.lock
  94. # pdm
  95. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  96. #pdm.lock
  97. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  98. # in version control.
  99. # https://pdm.fming.dev/#use-with-ide
  100. .pdm.toml
  101. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  102. __pypackages__/
  103. # Celery stuff
  104. celerybeat-schedule
  105. celerybeat.pid
  106. # SageMath parsed files
  107. *.sage.py
  108. # Environments
  109. .env
  110. .venv
  111. env/
  112. venv/
  113. ENV/
  114. env.bak/
  115. venv.bak/
  116. # Spyder project settings
  117. .spyderproject
  118. .spyproject
  119. # Rope project settings
  120. .ropeproject
  121. # mkdocs documentation
  122. /site
  123. # mypy
  124. .mypy_cache/
  125. .dmypy.json
  126. dmypy.json
  127. # Pyre type checker
  128. .pyre/
  129. # pytype static type analyzer
  130. .pytype/
  131. # Cython debug symbols
  132. cython_debug/
  133. # PyCharm
  134. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  135. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  136. # and can be added to the global gitignore or merged into this file. For a more nuclear
  137. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  138. #.idea/
  139. # End of https://www.toptal.com/developers/gitignore/api/django
  140. gunicorn.pid