From b3cdaaa8dc3d9e92b96ec9204003f7a75f7075e6 Mon Sep 17 00:00:00 2001 From: Silke pilon Date: Tue, 15 Jul 2025 21:44:02 +0200 Subject: [PATCH] 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. --- DEVELOPMENT.md | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index cc1ec91..20f28ee 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -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://: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).