Brewfile 708 B

1234567891011121314151617181920
  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. # required for yarn test -u
  12. brew 'watchman'
  13. # direnv isn't defined here, because we have it configured to check for a bootstrapped environment.
  14. # If it's installed in the early steps of the setup process, it just leads to confusion.
  15. # brew 'direnv'
  16. # required for acceptance testing
  17. cask 'chromedriver'