重构模型平台前后端并移除Redis依赖

This commit is contained in:
Winnie
2026-07-30 19:03:00 +08:00
commit c74b2abb48
172 changed files with 40825 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
$ErrorActionPreference = "Stop"
Set-Location (Split-Path $PSScriptRoot -Parent)
if (-not (Test-Path ".env")) {
Copy-Item ".env.example" ".env"
Write-Host "已从 .env.example 创建 .env,请按需修改密码。"
}
docker compose config | Out-Null
docker compose up -d --build
docker compose ps
Write-Host "访问地址:http://127.0.0.1:8081"