chore: 提交所有工作进度 — SaaS 后端增强、Admin UI、桌面端集成
包含大量 SaaS 平台改进、Admin 管理后台更新、桌面端集成完善、 文档同步、测试文件重构等内容。为 QA 测试准备干净工作树。
This commit is contained in:
11
start-saas.ps1
Normal file
11
start-saas.ps1
Normal file
@@ -0,0 +1,11 @@
|
||||
$env:ZCLAW_DATABASE_URL = "postgres://postgres:123123@localhost:5432/zclaw"
|
||||
$env:RUST_LOG = "info"
|
||||
$proc = Start-Process -FilePath "target\debug\zclaw-saas.exe" -PassThru -WindowStyle Minimized
|
||||
Start-Sleep -Seconds 3
|
||||
if ($proc.HasExited) {
|
||||
Write-Host "[ERROR] zclaw-saas exited with code: $($proc.ExitCode)"
|
||||
exit 1
|
||||
} else {
|
||||
Write-Host "[OK] zclaw-saas started (PID: $($proc.Id))"
|
||||
exit 0
|
||||
}
|
||||
Reference in New Issue
Block a user