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:
Silke pilon 2025-07-15 21:44:02 +02:00 committed by GitButler
parent 8bb387b3e6
commit b3cdaaa8dc
1 changed files with 0 additions and 27 deletions

View File

@ -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).