Platform upgrade: login auth fix, OCR/OSS upload, system menus and dicts, weather dashboard, weighing and invoice modules

This commit is contained in:
2026-08-14 01:12:33 +08:00
parent c377421a3e
commit 8099ebae0a
75 changed files with 5611 additions and 473 deletions
+10
View File
@@ -0,0 +1,10 @@
$ErrorActionPreference = "Stop"
$root = (Get-Location).Path
Start-Process -FilePath "dotnet" `
-ArgumentList @("run", "--no-build", "--project", "backend/AgriculturalPlatform.Api/AgriculturalPlatform.Api.csproj") `
-WorkingDirectory $root `
-RedirectStandardOutput "$root/backend-run.log" `
-RedirectStandardError "$root/backend-run.err.log" `
-WindowStyle Hidden
Start-Sleep -Seconds 6
Get-NetTCPConnection -LocalPort 5246 -ErrorAction SilentlyContinue | Where-Object State -eq Listen | Select-Object LocalPort, State, OwningProcess