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
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/env bash
# 在 SOCKS5 代理下执行命令(Docker 拉镜像、npm 等)
# 用法: scripts/with-proxy.sh docker compose pull
# scripts/with-proxy.sh npm ci # 在 frontend 目录执行时先 cd frontend
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
CONF="${SCRIPT_DIR}/proxychains-docker.conf"
exec proxychains4 -q -f "${CONF}" "$@"