.gitignore 606 B

1234567891011121314151617181920212223242526272829303132
  1. # See https://help.github.com/articles/ignoring-files for more about ignoring files.
  2. #
  3. # If you find yourself ignoring temporary files generated by your text editor
  4. # or operating system, you probably want to add a global ignore instead:
  5. # git config --global core.excludesfile '~/.gitignore_global'
  6. # Ignore bundler config.
  7. /.bundle
  8. # Ignore all environment files (except templates).
  9. .env.*
  10. .env
  11. !.env.example
  12. # Ignore all logfiles and tempfiles.
  13. /log/
  14. /tmp/
  15. # Local claude configuration
  16. /.claude
  17. /public/vendor/
  18. /pdfs/
  19. # Python virtual environments
  20. /venv/
  21. /.venv/
  22. # Cert Files
  23. *.pem
  24. *.key
  25. *.cert