refactor(deploy): 移除 mining-admin-web 从 deploy-mining.sh

mining-admin-web 是前端项目,不应该在后端服务部署脚本中管理。

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-11 22:52:26 -08:00
parent 3c73d510b1
commit 83a2800941
1 changed files with 0 additions and 6 deletions

View File

@ -40,7 +40,6 @@
# admin -> mining-admin-service
# auth -> auth-service
# wallet -> mining-wallet-service
# web, admin-web -> mining-admin-web (frontend)
#
set -e
@ -60,7 +59,6 @@ MINING_SERVICES=(
"mining-admin-service"
"auth-service"
"mining-wallet-service"
"mining-admin-web"
)
# Service Aliases
@ -72,8 +70,6 @@ declare -A SERVICE_ALIASES=(
["admin"]="mining-admin-service"
["auth"]="auth-service"
["wallet"]="mining-wallet-service"
["web"]="mining-admin-web"
["admin-web"]="mining-admin-web"
)
# 2.0 Databases
@ -104,7 +100,6 @@ declare -A SERVICE_PORTS=(
["mining-admin-service"]="3023"
["auth-service"]="3024"
["mining-wallet-service"]="3025"
["mining-admin-web"]="3100"
)
# CDC Consumer Group
@ -810,7 +805,6 @@ show_help() {
echo " admin -> mining-admin-service"
echo " auth -> auth-service"
echo " wallet -> mining-wallet-service"
echo " web, admin-web -> mining-admin-web"
echo ""
echo -e "${BOLD}Examples:${NC}"
echo " $0 up # Start all services"