chore: initial commit of ai site platform

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
whm
2026-07-31 10:19:22 +08:00
commit 6366859bb3
222 changed files with 47313 additions and 0 deletions

6
stop.ps1 Normal file
View File

@@ -0,0 +1,6 @@
# Stop all stack processes (Docker + native). Thin wrapper around scripts\Stop-Stack.ps1.
$ErrorActionPreference = "Continue"
$Root = $PSScriptRoot
Set-Location -LiteralPath $Root
& (Join-Path $Root "scripts\Stop-Stack.ps1")
exit $LASTEXITCODE