Brewfile 648 B

1234567891011121314151617181920212223242526272829
  1. # required to run devservices
  2. cask 'docker'
  3. brew 'pyenv'
  4. # required for pyenv's python-build
  5. brew 'openssl'
  6. brew 'readline'
  7. # required for yarn test -u
  8. brew 'watchman'
  9. # required to build some of sentry's dependencies
  10. brew 'pkgconfig'
  11. brew 'libxslt'
  12. brew 'libxmlsec1'
  13. brew 'geoip'
  14. # Currently needed because on Big Sur there's no wheel for it
  15. brew 'librdkafka'
  16. # direnv isn't defined here, because we have it configured to check for a bootstrapped environment.
  17. # If it's installed in the early steps of the setup process, it just leads to confusion.
  18. # brew 'direnv'
  19. tap 'homebrew/cask'
  20. # required for acceptance testing
  21. cask 'chromedriver'