.gitignore 2.0 KB

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