Files
AIRegulation-DocAnalysis/frontend/start.sh

10 lines
178 B
Bash
Raw Normal View History

2026-05-14 15:07:34 +08:00
#!/bin/bash
# 启动开发服务器
# 端口: 8000
# 监听: 0.0.0.0
cd "$(dirname "$0")"
echo "Starting dev server on http://0.0.0.0:8001"
npx vite --host 0.0.0.0 --port 8001