.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. ### 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. pip-wheel-metadata/
  34. share/python-wheels/
  35. *.egg-info/
  36. .installed.cfg
  37. *.egg
  38. MANIFEST
  39. # PyInstaller
  40. # Usually these files are written by a python script from a template
  41. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  42. *.manifest
  43. *.spec
  44. # Installer logs
  45. pip-log.txt
  46. pip-delete-this-directory.txt
  47. # Unit test / coverage reports
  48. htmlcov/
  49. .tox/
  50. .nox/
  51. .coverage
  52. .coverage.*
  53. .cache
  54. nosetests.xml
  55. coverage.xml
  56. *.cover
  57. *.py,cover
  58. .hypothesis/
  59. .pytest_cache/
  60. pytestdebug.log
  61. # Translations
  62. *.mo
  63. # Django stuff:
  64. # Flask stuff:
  65. instance/
  66. .webassets-cache
  67. # Scrapy stuff:
  68. .scrapy
  69. # Sphinx documentation
  70. docs/_build/
  71. doc/_build/
  72. # PyBuilder
  73. target/
  74. # Jupyter Notebook
  75. .ipynb_checkpoints
  76. # IPython
  77. profile_default/
  78. ipython_config.py
  79. # pyenv
  80. .python-version
  81. # pipenv
  82. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  83. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  84. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  85. # install all needed dependencies.
  86. #Pipfile.lock
  87. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  88. __pypackages__/
  89. # Celery stuff
  90. celerybeat-schedule
  91. celerybeat.pid
  92. # SageMath parsed files
  93. *.sage.py
  94. # Environments
  95. .env
  96. .venv
  97. env/
  98. venv/
  99. ENV/
  100. env.bak/
  101. venv.bak/
  102. pythonenv*
  103. # Spyder project settings
  104. .spyderproject
  105. .spyproject
  106. # Rope project settings
  107. .ropeproject
  108. # mkdocs documentation
  109. /site
  110. # mypy
  111. .mypy_cache/
  112. .dmypy.json
  113. dmypy.json
  114. # Pyre type checker
  115. .pyre/
  116. # pytype static type analyzer
  117. .pytype/
  118. # profiling data
  119. .prof