.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. # Django #
  2. *.log
  3. *.pot
  4. *.pyc
  5. __pycache__
  6. db.sqlite3
  7. media
  8. # Backup files #
  9. *.bak
  10. # If you are using PyCharm #
  11. .idea/**/workspace.xml
  12. .idea/**/tasks.xml
  13. .idea/dictionaries
  14. .idea/**/dataSources/
  15. .idea/**/dataSources.ids
  16. .idea/**/dataSources.xml
  17. .idea/**/dataSources.local.xml
  18. .idea/**/sqlDataSources.xml
  19. .idea/**/dynamic.xml
  20. .idea/**/uiDesigner.xml
  21. .idea/**/gradle.xml
  22. .idea/**/libraries
  23. *.iws /out/
  24. # Python #
  25. *.py[cod]
  26. *$py.class
  27. # Distribution / packaging
  28. .Python build/
  29. develop-eggs/
  30. dist/
  31. downloads/
  32. eggs/
  33. .eggs/
  34. lib/
  35. lib64/
  36. parts/
  37. sdist/
  38. var/
  39. wheels/
  40. *.egg-info/
  41. .installed.cfg
  42. *.egg
  43. *.manifest
  44. *.spec
  45. # Installer logs
  46. pip-log.txt
  47. pip-delete-this-directory.txt
  48. # Unit test / coverage reports
  49. htmlcov/
  50. .tox/
  51. .coverage
  52. .coverage.*
  53. .cache
  54. .pytest_cache/
  55. nosetests.xml
  56. coverage.xml
  57. *.cover
  58. .hypothesis/
  59. # Jupyter Notebook
  60. .ipynb_checkpoints
  61. # pyenv
  62. .python-version
  63. # celery
  64. celerybeat-schedule.*
  65. # SageMath parsed files
  66. *.sage.py
  67. # Environments
  68. .env
  69. .venv
  70. env/
  71. venv/
  72. ENV/
  73. env.bak/
  74. venv.bak/
  75. # mkdocs documentation
  76. /site
  77. # mypy
  78. .mypy_cache/
  79. # Sublime Text #
  80. *.tmlanguage.cache
  81. *.tmPreferences.cache
  82. *.stTheme.cache
  83. *.sublime-workspace
  84. *.sublime-project
  85. # sftp configuration file
  86. sftp-config.json
  87. # Package control specific files Package
  88. Control.last-run
  89. Control.ca-list
  90. Control.ca-bundle
  91. Control.system-ca-bundle
  92. GitHub.sublime-settings
  93. # Visual Studio Code #
  94. .vscode
  95. !.vscode/settings.json
  96. !.vscode/tasks.json
  97. !.vscode/launch.json
  98. !.vscode/extensions.json
  99. .history
  100. # exclude media folder
  101. media
  102. # credentials
  103. credentials.json