Files
ai_dianshang/web/start.bat

30 lines
630 B
Batchfile
Raw Permalink Normal View History

2025-11-28 15:18:10 +08:00
@echo off
chcp 65001 >nul
echo.
echo ========================================
echo 电商PC端项目启动
echo ========================================
echo.
echo 正在启动本地服务器...
echo.
echo 请在浏览器中访问: http://localhost:8000
echo.
echo 按 Ctrl+C 停止服务器
echo.
echo ========================================
echo.
cd /d "%~dp0"
REM 检查是否安装了 Python
python --version >nul 2>&1
if %errorlevel% == 0 (
echo 使用 Python 启动服务器...
python -m http.server 8000
) else (
echo Python 未安装,尝试使用 npx http-server...
npx http-server -p 8000
)
pause