From 94020e4ca45eaf404ce9f7c6f0374dc4d24f6e5a Mon Sep 17 00:00:00 2001 From: Jeremie Fraeys Date: Wed, 18 Feb 2026 17:57:57 -0500 Subject: [PATCH] chore: move detect_native.go and setup_monitoring.py to dev/ --- scripts/README.md | 12 ++++++++++++ scripts/{detect_native.go => dev/detect-native.go} | 0 .../{setup_monitoring.py => dev/setup-monitoring.py} | 0 3 files changed, 12 insertions(+) rename scripts/{detect_native.go => dev/detect-native.go} (100%) rename scripts/{setup_monitoring.py => dev/setup-monitoring.py} (100%) diff --git a/scripts/README.md b/scripts/README.md index c31606f..6205630 100644 --- a/scripts/README.md +++ b/scripts/README.md @@ -25,6 +25,18 @@ Tests full stack health by starting docker-compose services and verifying: Manages benchmark run artifacts in `.local-artifacts/`. +### `detect-native.go` +**Purpose**: Native library detection utility +**Usage**: `go run ./scripts/dev/detect-native.go` + +Detects native C++ libraries and CGO configuration. Shows which native libs are available. + +### `setup-monitoring.py` +**Purpose**: Development monitoring setup +**Usage**: `python3 ./scripts/dev/setup-monitoring.py` + +Creates Grafana provisioning structure for local development. + --- ## CI Scripts (`ci/`) diff --git a/scripts/detect_native.go b/scripts/dev/detect-native.go similarity index 100% rename from scripts/detect_native.go rename to scripts/dev/detect-native.go diff --git a/scripts/setup_monitoring.py b/scripts/dev/setup-monitoring.py similarity index 100% rename from scripts/setup_monitoring.py rename to scripts/dev/setup-monitoring.py