chore: add remaining test docs, scripts and temp files

- Add Git commit preparation checklist
- Add Phase testing guides and issue tracking
- Add utility scripts (env setup, test data initialization)
- Add temp migration SQL files (for reference)
- Update startup scripts and README
- Remove obsolete scripts
This commit is contained in:
2025-11-16 15:44:55 +08:00
parent 1992232fda
commit 855d142fec
32 changed files with 9125 additions and 113 deletions

View File

@@ -1,29 +0,0 @@
@echo off
chcp 65001 >nul
echo ========================================
echo AI临床研究平台 - 一键启动
echo ========================================
echo.
echo [1/2] 启动后端服务...
cd /d "%~dp0backend"
start "后端服务 - 端口3001" cmd /k "npm run dev"
timeout /t 3 /nobreak >nul
echo [2/2] 启动前端服务...
cd /d "%~dp0frontend"
start "前端服务 - 端口3000" cmd /k "npm run dev"
echo.
echo ========================================
echo ✅ 服务启动中请等待15-20秒
echo ========================================
echo.
echo 📍 前端地址: http://localhost:3000
echo 📍 后端地址: http://localhost:3001
echo.
echo 提示会打开2个新窗口请不要关闭
echo.
pause