-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBrewfile
43 lines (30 loc) · 879 Bytes
/
Brewfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Brewfile
# add any dependencies that must be installed from homebrew here
# Ruby version manager
brew "rbenv"
# NodeJS version manager
brew "nodenv"
# cloud.gov RDS is on postgres 12
brew "postgresql@12", link: true
# docker is used for building images for deployment, and in the bin/with-server script
cask "docker"
brew "dockerize"
# helper scripts for creating new ADRs
brew "adr-tools"
# chromedriver for integration tests
cask "chromedriver"
# used by rails-erd documentation tool
brew "graphviz"
# used in terraform/create_space_deployer.sh
brew "jq"
# queue for sidekiq jobs
brew "redis"
# ngrok local tunnel to receive webhooks
cask "ngrok"
# Terraform version manager for infrastructure
brew "tfenv"
# AWS command-line utilities necessary for deploying and operations
brew "awscli"
cask "session-manager-plugin"
# necessary for file encryption
brew "gpg"