diff options
| author | Jay Swain <jswain@gitlab.com> | 2025-06-04 10:35:16 -0700 |
|---|---|---|
| committer | Jay Swain <jswain@gitlab.com> | 2025-06-04 10:35:16 -0700 |
| commit | d66380a31b2bc241b5a4264de2aefe936089a034 (patch) | |
| tree | c6e6bc8cf0863c40e6fc23435c8aa01908bb14d8 | |
| parent | 69b73fd2dc1f15700b2e970bc2925b72c26e68e2 (diff) | |
Add envoy
* create Brewfile and call it in make setup
| -rw-r--r-- | Brewfile | 1 | ||||
| -rw-r--r-- | Makefile | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Brewfile b/Brewfile new file mode 100644 index 0000000..48c2d2a --- /dev/null +++ b/Brewfile @@ -0,0 +1 @@ +brew "envoy" @@ -19,6 +19,12 @@ setup: @go mod tidy @go mod vendor @go tool + @if command -v brew >/dev/null 2>&1; then \ + echo "Installing Homebrew packages..."; \ + brew bundle; \ + else \ + echo "Homebrew not found, skipping brew bundle"; \ + fi build: bin/authzd bin/sparkled |
