mirror of https://github.com/jetkvm/kvm.git
docs: clean up DEVELOPMENT.md by removing outdated sections
Remove the Custom Build Tags and Release Process sections to simplify the documentation and avoid confusion with deprecated build and release instructions. Focus the document on current performance profiling steps.
This commit is contained in:
parent
8bb387b3e6
commit
b3cdaaa8dc
|
@ -464,12 +464,6 @@ GOOS=linux GOARCH=amd64 go build -o bin/jetkvm_app_x64 cmd/main.go
|
|||
go build -o bin/jetkvm_app_native cmd/main.go
|
||||
```
|
||||
|
||||
### Custom Build Tags
|
||||
|
||||
```bash
|
||||
# Build with specific tags
|
||||
go build -tags "netgo,debug" -o bin/jetkvm_app cmd/main.go
|
||||
```
|
||||
|
||||
### Performance Profiling
|
||||
|
||||
|
@ -481,25 +475,4 @@ go build -o bin/jetkvm_app -ldflags="-X main.enableProfiling=true" cmd/main.go
|
|||
curl http://<IP>:6060/debug/pprof/
|
||||
```
|
||||
|
||||
## Release Process
|
||||
|
||||
### Development Release
|
||||
|
||||
```bash
|
||||
# Build and upload development release
|
||||
make dev_release
|
||||
```
|
||||
|
||||
### Production Release
|
||||
|
||||
```bash
|
||||
# Update version in Makefile
|
||||
VERSION := 0.4.7
|
||||
|
||||
# Build and upload production release
|
||||
make release
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
For more information, visit the [JetKVM Documentation](https://jetkvm.com/docs) or join our [Discord Server](https://jetkvm.com/discord).
|
||||
|
|
Loading…
Reference in New Issue