.gitignore 378 B

12345678910111213141516171819202122232425262728293031
  1. # Default folder where the git repos are located
  2. repos/
  3. forks/
  4. tickets/
  5. docs/
  6. requests/
  7. releases/
  8. remotes/
  9. # Other python/editor specific files to ignore
  10. dist/
  11. build/
  12. *.pyc
  13. *.pyo
  14. *.swp
  15. *.egg-info
  16. *.conf
  17. .coverage
  18. _build/
  19. # Just a local folder I use for testing
  20. clones/
  21. # IdeaIDE
  22. .idea/
  23. # Ignore the git repos in unit tests
  24. tests/*.git
  25. # Don't track alembic.ini
  26. alembic.ini