mirror of
https://github.com/wagoodman/dive
synced 2026-03-14 22:35:50 +01:00
docs(mcp): add make build instructions to guide
This commit is contained in:
parent
f9845708af
commit
a2e788613c
1 changed files with 7 additions and 4 deletions
|
|
@ -13,15 +13,18 @@ Before running the MCP server, you need to build the `dive` binary from source t
|
|||
- **Task** (Optional): A task runner for simplified builds.
|
||||
|
||||
### Standard Build (Recommended)
|
||||
If you have `task` installed:
|
||||
If you have `task` or `make` installed:
|
||||
```bash
|
||||
# Build the binary for your local platform
|
||||
# Using Task
|
||||
task build-local
|
||||
|
||||
# Using Make
|
||||
make build
|
||||
```
|
||||
The binary will be created at `./dive`.
|
||||
The binary will be created at `./dive` (when using `task build-local`) or inside the `snapshot/` directory (when using `make build`).
|
||||
|
||||
### Manual Build
|
||||
Alternatively, use the standard Go compiler:
|
||||
Alternatively, use the standard Go compiler directly:
|
||||
```bash
|
||||
go build -o dive ./cmd/dive
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue