Files
emall-api/start_project.bat
2025-10-17 16:21:14 +08:00

12 lines
366 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
echo 正在启动FutureMail API服务器...
cd /d "%~dp0FutureMailAPI"
start "FutureMail API Server" cmd /k "dotnet run"
echo API服务器正在启动请等待几秒钟...
timeout /t 5 /nobreak > nul
echo 正在打开Swagger文档...
start http://localhost:5003/swagger
echo 正在打开API测试页面...
start "%~dp0api_test.html"
echo 完成!
pause