7 lines
199 B
Batchfile
7 lines
199 B
Batchfile
@echo off
|
|
cd /d "%~dp0"
|
|
if not defined PORT set "PORT=8001"
|
|
echo [dev] API+Next 开发模式 PORT=%PORT%
|
|
echo [dev] 浏览器打开 http://localhost:3000
|
|
python scripts\launch.py --dev --port %PORT%
|