feat(admin): 添加用户管理相关文件

添加用户管理视图、API和状态管理文件
This commit is contained in:
张翔
2026-03-28 14:37:29 +08:00
commit 08ea5fbe98
1643 changed files with 255646 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
#!/bin/bash
set -e
echo "=========================================="
echo "Building Everything Is Suitable API"
echo "=========================================="
mvn clean package -DskipTests
echo "=========================================="
echo "Build completed successfully!"
echo "=========================================="
echo "Building Docker images..."
docker-compose build
echo "=========================================="
echo "Docker images built successfully!"
echo "=========================================="
echo "Starting services..."
docker-compose up -d
echo "=========================================="
echo "Services started successfully!"
echo "=========================================="
echo "Gateway: http://localhost:8080"
echo "Client App: http://localhost:8081"
echo "Admin App: http://localhost:8082"
echo "=========================================="