release: nexus btpanel session fix and app-v2

This commit is contained in:
Codex Release Bot
2026-07-08 22:31:31 +08:00
commit 1933f0af6e
2457 changed files with 350105 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/env bash
# One-click local dev + verification (Ubuntu native, Docker MySQL/Redis).
# Usage: bash scripts/local_verify.sh
set -euo pipefail
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
cd "$ROOT"
echo "═══ Nexus local verify ═══"
bash scripts/start-dev.sh
echo ""
echo "── smoke ──"
bash scripts/local_integration_smoke.sh
echo ""
echo "── test_api ──"
"${ROOT}/.venv/bin/python" tests/test_api.py
echo ""
echo "── ruff (F) ──"
"${ROOT}/.venv/bin/ruff" check server/ --select F
echo ""
echo "═══ All local checks passed ═══"