Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing the 'pre-commit install' command in the quick start guide of the NGF #1944

Merged
merged 2 commits into from
May 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions docs/developer/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,6 @@ Follow these steps to set up your development environment.
brew install pre-commit
```

and then run

```shell
pre-commit install
```

in the project root directory to install the git hooks.

2. [Fork the project repository](https://github.com/nginxinc/nginx-gateway-fabric/fork)
3. Clone your repository, and install the project dependencies:

Expand All @@ -46,10 +38,19 @@ Follow these steps to set up your development environment.
cd nginx-gateway-fabric
```

and then run

```shell
pre-commit install
```

in the project root directory to install the git hooks.

```makefile
make deps
```


## Build the Binary and Images

### Setting GOARCH
Expand Down
Loading