.gitignore 371 B

12345678910111213141516171819202122232425262728293031
  1. # tools, IDEs
  2. /.idea/
  3. /*.geany
  4. # build files and folders
  5. .cache/
  6. /.coverage
  7. /coverage.xml
  8. .sass-cache/
  9. /.tox/
  10. /build/
  11. /dist/
  12. /*.egg/
  13. /*.egg-info/
  14. /*.eggs/
  15. /docs/build/
  16. # test projects and data
  17. /manage.py
  18. /test_project_*/
  19. /tests/reports/
  20. # Django and Python
  21. /static/
  22. /media/
  23. __pycache__/
  24. *.py[cod]
  25. # Virtualenv magic, see https://gist.github.com/bittner/8830745
  26. .venv