.gitignore 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. # Created by https://www.gitignore.io
  2. .idea
  3. ### OSX ###
  4. .DS_Store
  5. .AppleDouble
  6. .LSOverride
  7. # Icon must end with two \r
  8. Icon
  9. # Thumbnails
  10. ._*
  11. # Files that might appear on external disk
  12. .Spotlight-V100
  13. .Trashes
  14. # Directories potentially created on remote AFP share
  15. .AppleDB
  16. .AppleDesktop
  17. Network Trash Folder
  18. Temporary Items
  19. .apdisk
  20. ### Python ###
  21. # Byte-compiled / optimized / DLL files
  22. __pycache__/
  23. *.py[cod]
  24. # C extensions
  25. *.so
  26. # Distribution / packaging
  27. .Python
  28. env/
  29. build/
  30. develop-eggs/
  31. dist/
  32. downloads/
  33. eggs/
  34. lib/
  35. lib64/
  36. parts/
  37. sdist/
  38. var/
  39. *.egg-info/
  40. .installed.cfg
  41. *.egg
  42. # PyInstaller
  43. # Usually these files are written by a python script from a template
  44. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  45. *.manifest
  46. *.spec
  47. # Installer logs
  48. pip-log.txt
  49. pip-delete-this-directory.txt
  50. # Unit test / coverage reports
  51. htmlcov/
  52. .tox/
  53. .coverage
  54. .cache
  55. nosetests.xml
  56. coverage.xml
  57. # Translations
  58. *.mo
  59. *.pot
  60. # Sphinx documentation
  61. docs/_build/
  62. # PyBuilder
  63. target/
  64. ### Django ###
  65. *.log
  66. *.pyc
  67. local_settings.py
  68. .env
  69. db.sqlite3