From 0f8e82a2bce02460cdca7ef47ff6d51053bf19ae Mon Sep 17 00:00:00 2001 From: Caleb Woodbine Date: Tue, 27 Aug 2024 21:21:55 +1200 Subject: [PATCH] feat: add development Brewfile adds a Brewfile to install all dependencies for a local development environment --- docs/development.md | 8 +------- hack/Brewfile | 10 ++++++++++ 2 files changed, 11 insertions(+), 7 deletions(-) create mode 100644 hack/Brewfile diff --git a/docs/development.md b/docs/development.md index 8acc7dc3..abf5d6e5 100644 --- a/docs/development.md +++ b/docs/development.md @@ -9,17 +9,11 @@ Requirements: ## Install dependencies with Brew ```sh -brew install go nodejs npm +brew bundle install --file ./hack/Brewfile ``` ## Launch a workspace with Zellij -install with Brew - -```sh -brew install zellij -``` - launch the workspace ```sh diff --git a/hack/Brewfile b/hack/Brewfile new file mode 100644 index 00000000..7bc45dcb --- /dev/null +++ b/hack/Brewfile @@ -0,0 +1,10 @@ +brew "curl" +brew "go" +brew "golangci-lint" +brew "gopls" +brew "jq" +brew "ko" +brew "node" +brew "shellcheck" +brew "shfmt" +brew "zellij"