.gitignore 441 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # filename patterns
  2. *~
  3. .*.swp
  4. .#*
  5. *.deb
  6. *.egg
  7. *.egg-info
  8. *.lock
  9. *.pyc
  10. *.tac
  11. _trial_temp/
  12. _trial_temp*/
  13. # stuff that is likely to exist when you run a server locally
  14. /*.db
  15. /*.log
  16. /*.log.config
  17. /*.pid
  18. /.python-version
  19. /*.signing.key
  20. /env/
  21. /homeserver*.yaml
  22. /media_store/
  23. /uploads
  24. # IDEs
  25. /.idea/
  26. /.ropeproject/
  27. /.vscode/
  28. # build products
  29. /.coverage*
  30. !/.coveragerc
  31. /.tox
  32. /build/
  33. /coverage.*
  34. /dist/
  35. /docs/build/
  36. /htmlcov
  37. /pip-wheel-metadata/