This commit is contained in:
yinsx
2025-12-13 15:40:01 +08:00
commit 39c0f7e708
104 changed files with 6460 additions and 0 deletions

7
start.bat Normal file
View File

@ -0,0 +1,7 @@
@echo off
chcp 65001 >nul
set "BACKEND_DIR=%~dp0backend"
set "FRONTEND_DIR=%~dp0frontend"
wt.exe --title "Backend" -d "%BACKEND_DIR%" cmd /k "bun install & bun dev" ; new-tab --title "Frontend" -d "%FRONTEND_DIR%" cmd /k "npm install & npm run dev"