Skip to content

Commit

Permalink
📝 Add nix shell to developer setup docs
Browse files Browse the repository at this point in the history
Signed-off-by: Muhammed Hussein Karimi <[email protected]>
  • Loading branch information
mhkarimi1383 committed Dec 11, 2024
1 parent be9b903 commit 686b08d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/developer-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ git remote -v
```
Install the build dependencies.
* Run `make bootstrap` to install the required Go tools
* Run `make bootstrap` to install the required Go tools, Nix users can run `nix-shell`, it will bring up a shell with required tools installed
## Git Development Workflow
Expand Down
9 changes: 5 additions & 4 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ in
pkgs.mkShell {
name = "scripts-shell";
buildInputs = with pkgs; [
semver-tool
kubectl
kubernetes-helm
yq-go
(minikube.override { withQemu = true; } )
chart-testing
git
go_1_19
kubectl
kubernetes-controller-tools
kubernetes-helm
semver-tool
yq-go
];
}

0 comments on commit 686b08d

Please sign in to comment.