.gitignore 756 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. */__pycache__/*
  2. db.sqlite3
  3. .env
  4. media/*
  5. # Byte-compiled / optimized / DLL files
  6. __pycache__/
  7. *.py[cod]
  8. *$py.class
  9. # C extensions
  10. *.so
  11. # Distribution / packaging
  12. .Python
  13. env/
  14. build/
  15. develop-eggs/
  16. dist/
  17. downloads/
  18. eggs/
  19. .eggs/
  20. lib/
  21. lib64/
  22. parts/
  23. sdist/
  24. var/
  25. *.egg-info/
  26. .installed.cfg
  27. *.egg
  28. # PyInstaller
  29. # Usually these files are written by a python script from a template
  30. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  31. *.manifest
  32. *.spec
  33. # Installer logs
  34. pip-log.txt
  35. pip-delete-this-directory.txt
  36. # Unit test / coverage reports
  37. htmlcov/
  38. .tox/
  39. .coverage
  40. .coverage.*
  41. .cache
  42. nosetests.xml
  43. coverage.xml
  44. *,cover
  45. # Translations
  46. *.mo
  47. *.pot
  48. # Django stuff:
  49. *.log
  50. # Sphinx documentation
  51. docs/_build/
  52. # PyBuilder
  53. target/