first commit

This commit is contained in:
小贺
2025-09-05 21:07:34 +08:00
commit c1a493222c
31 changed files with 1580 additions and 0 deletions

22
quick-start.bat Normal file
View File

@@ -0,0 +1,22 @@
@echo off
echo 🚀 SiliconFlow API Key 验证器快速启动...
echo.
REM 启动后端
start cmd /k "echo 启动后端服务器... && npx tsx src/server.ts"
REM 等待2秒让后端启动
timeout /t 2 /nobreak >nul
REM 启动前端
cd frontend
start cmd /k "echo 启动前端服务器... && npm run dev"
echo.
echo 🌐 应用已启动:
echo Frontend: http://localhost:3001
echo Backend API: http://localhost:3000/api
echo Health Check: http://localhost:3000/health
echo.
echo 按任意键退出...
pause >nul