first commit

This commit is contained in:
2026-06-14 20:31:10 +08:00
parent c33b143176
commit 1ed3f576fa
51 changed files with 3362 additions and 810 deletions

8
run-frontend.bat Normal file
View File

@@ -0,0 +1,8 @@
@echo off
cd /d "%~dp0frontend"
if not exist node_modules (
echo Installing npm dependencies...
call npm install
)
echo Starting Vite dev server...
call npm run dev