Refactor backend and frontend modules for architecture alignment

This commit is contained in:
yoyuzh
2026-04-12 00:32:21 +08:00
parent f59515f5dd
commit 30a9bbc1e7
253 changed files with 25462 additions and 4786 deletions

View File

@@ -1,8 +1,12 @@
$ErrorActionPreference = 'Stop'
$root = Split-Path -Parent $PSScriptRoot
$frontendLogOut = Join-Path $root 'frontend-dev.out.log'
$frontendLogErr = Join-Path $root 'frontend-dev.err.log'
$logsDir = Join-Path $root 'logs'
if (-not (Test-Path $logsDir)) {
New-Item -Path $logsDir -ItemType Directory | Out-Null
}
$frontendLogOut = Join-Path $logsDir 'frontend-dev.out.log'
$frontendLogErr = Join-Path $logsDir 'frontend-dev.err.log'
if (Test-Path $frontendLogOut) {
Remove-Item $frontendLogOut -Force