Files
xiaoxia-saas/start-web.ps1
T
xiaoxia e068e301a1
CI/CD Pipeline / Validate Code Quality And Tests (push) Has been cancelled
CI/CD Pipeline / Frontend Lint (push) Has been cancelled
fix: 统一 ENABLE_REDIS_SESSIONS 命名,修复登录因 AttributeError 导致 500
2026-06-27 17:05:48 +08:00

14 lines
428 B
PowerShell

# 小虾 SaaS - 前端服务启动脚本
Write-Host "=== 启动小虾 SaaS 前端服务 ===" -ForegroundColor Green
# 切换到 Web 目录
Set-Location F:\openclaw-saas\apps\web
# 启动 Vite 开发服务器
Write-Host "`n启动 Vite 开发服务器..." -ForegroundColor Yellow
Write-Host "访问地址: http://localhost:5173" -ForegroundColor Cyan
Write-Host "`n按 Ctrl+C 停止服务`n" -ForegroundColor Gray
npm run dev