.gitignore 1.7 KB

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