.gitignore 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. # Created by https://www.gitignore.io/api/macos,python,django
  2. ### Django ###
  3. *.log
  4. *.pot
  5. *.pyc
  6. __pycache__/
  7. local_settings.py
  8. db.sqlite3
  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. ### macOS ###
  14. *.DS_Store
  15. .AppleDouble
  16. .LSOverride
  17. # Icon must end with two \r
  18. Icon
  19. # Thumbnails
  20. ._*
  21. # Files that might appear in the root of a volume
  22. .DocumentRevisions-V100
  23. .fseventsd
  24. .Spotlight-V100
  25. .TemporaryItems
  26. .Trashes
  27. .VolumeIcon.icns
  28. .com.apple.timemachine.donotpresent
  29. # Directories potentially created on remote AFP share
  30. .AppleDB
  31. .AppleDesktop
  32. Network Trash Folder
  33. Temporary Items
  34. .apdisk
  35. ### Python ###
  36. # Byte-compiled / optimized / DLL files
  37. *.py[cod]
  38. *$py.class
  39. # C extensions
  40. *.so
  41. # Distribution / packaging
  42. .Python
  43. build/
  44. develop-eggs/
  45. dist/
  46. downloads/
  47. eggs/
  48. .eggs/
  49. lib/
  50. lib64/
  51. parts/
  52. sdist/
  53. var/
  54. wheels/
  55. *.egg-info/
  56. .installed.cfg
  57. *.egg
  58. # PyInstaller
  59. # Usually these files are written by a python script from a template
  60. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  61. *.manifest
  62. *.spec
  63. # Installer logs
  64. pip-log.txt
  65. pip-delete-this-directory.txt
  66. # Unit test / coverage reports
  67. htmlcov/
  68. .tox/
  69. .coverage
  70. .coverage.*
  71. .cache
  72. .pytest_cache/
  73. nosetests.xml
  74. coverage.xml
  75. *.cover
  76. .hypothesis/
  77. # Translations
  78. *.mo
  79. # Flask stuff:
  80. instance/
  81. .webassets-cache
  82. # Scrapy stuff:
  83. .scrapy
  84. # Sphinx documentation
  85. docs/_build/
  86. # PyBuilder
  87. target/
  88. # Jupyter Notebook
  89. .ipynb_checkpoints
  90. # pyenv
  91. .python-version
  92. # celery beat schedule file
  93. celerybeat-schedule.*
  94. # SageMath parsed files
  95. *.sage.py
  96. # Environments
  97. .env
  98. .venv
  99. env/
  100. venv/
  101. ENV/
  102. env.bak/
  103. venv.bak/
  104. # Spyder project settings
  105. .spyderproject
  106. .spyproject
  107. # Rope project settings
  108. .ropeproject
  109. # mkdocs documentation
  110. /site
  111. # mypy
  112. .mypy_cache/
  113. # End of https://www.gitignore.io/api/macos,python,django