.gitignore 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. ### Django ###
  2. *.log
  3. *.pot
  4. *.pyc
  5. __pycache__/
  6. local_settings.py
  7. db.sqlite3
  8. db.sqlite3-journal
  9. media
  10. env/
  11. .env/
  12. # If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
  13. # in your Git repository. Update and uncomment the following line accordingly.
  14. # <django-project-name>/staticfiles/
  15. ### Django.Python Stack ###
  16. # Byte-compiled / optimized / DLL files
  17. *.py[cod]
  18. *$py.class
  19. # C extensions
  20. *.so
  21. # Distribution / packaging
  22. .Python
  23. build/
  24. develop-eggs/
  25. dist/
  26. downloads/
  27. eggs/
  28. .eggs/
  29. lib/
  30. lib64/
  31. parts/
  32. sdist/
  33. var/
  34. wheels/
  35. pip-wheel-metadata/
  36. share/python-wheels/
  37. *.egg-info/
  38. .installed.cfg
  39. *.egg
  40. MANIFEST
  41. # PyInstaller
  42. # Usually these files are written by a python script from a template
  43. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  44. *.manifest
  45. *.spec
  46. # Installer logs
  47. pip-log.txt
  48. pip-delete-this-directory.txt
  49. # Unit test / coverage reports
  50. htmlcov/
  51. .tox/
  52. .nox/
  53. .coverage
  54. .coverage.*
  55. .cache
  56. nosetests.xml
  57. coverage.xml
  58. *.cover
  59. .hypothesis/
  60. .pytest_cache/
  61. # Translations
  62. *.mo
  63. # Scrapy stuff:
  64. .scrapy
  65. # Sphinx documentation
  66. docs/_build/
  67. # PyBuilder
  68. target/
  69. # pyenv
  70. .python-version
  71. # pipenv
  72. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  73. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  74. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  75. # install all needed dependencies.
  76. #Pipfile.lock
  77. # celery beat schedule file
  78. celerybeat-schedule
  79. # SageMath parsed files
  80. *.sage.py
  81. # Spyder project settings
  82. .spyderproject
  83. .spyproject
  84. # Rope project settings
  85. .ropeproject
  86. # Mr Developer
  87. .mr.developer.cfg
  88. .project
  89. .pydevproject
  90. # mkdocs documentation
  91. /site
  92. # mypy
  93. .mypy_cache/
  94. .dmypy.json
  95. dmypy.json
  96. # Pyre type checker
  97. .pyre/
  98. docker-compose.override.yml
  99. dump.sql
  100. uploads
  101. .idea/