Brewfile 790 B

1234567891011121314151617181920212223242526
  1. # required to run devservices
  2. # colima is a docker-compatible container runtime
  3. # devenv installs and manages it as we want control over the version,
  4. # but we leave the qemu part to brew
  5. brew 'qemu'
  6. # while not needed by devservices, the docker cli itself is still useful
  7. # (not docker desktop/daemon which is provided by the cask)
  8. # and is used by some make targets
  9. brew 'docker'
  10. brew 'docker-buildx'
  11. brew 'pyenv'
  12. # required for pyenv's python-build
  13. brew 'openssl'
  14. brew 'readline'
  15. # required for yarn test -u
  16. brew 'watchman'
  17. # direnv isn't defined here, because we have it configured to check for a bootstrapped environment.
  18. # If it's installed in the early steps of the setup process, it just leads to confusion.
  19. # brew 'direnv'
  20. # required for acceptance testing
  21. cask 'chromedriver'