chore: remove temporary script

This commit is contained in:
2026-06-26 18:24:04 +08:00
parent e57933265d
commit 02008ca7e6
-18
View File
@@ -1,18 +0,0 @@
# 小虾 SaaS - API 服务启动脚本
Write-Host "=== 启动小虾 SaaS API 服务 ===" -ForegroundColor Green
# 设置 Python 路径
$env:PYTHONPATH = "F:\openclaw-saas"
Write-Host "PYTHONPATH: $env:PYTHONPATH" -ForegroundColor Cyan
# 切换到 API 目录
Set-Location F:\openclaw-saas\apps\api
# 启动 API 服务
Write-Host "`n启动 FastAPI 服务..." -ForegroundColor Yellow
Write-Host "访问地址: http://localhost:8000" -ForegroundColor Cyan
Write-Host "API 文档: http://localhost:8000/docs" -ForegroundColor Cyan
Write-Host "`n按 Ctrl+C 停止服务`n" -ForegroundColor Gray
python main.py