feat(map): sync station list with viewport

This commit is contained in:
lingniu
2026-08-11 17:01:27 +08:00
parent 22f3904ad7
commit c42570c0ee
16 changed files with 2509 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
# 羚牛氢能驾驶舱 - 局域网本地部署启动脚本
echo "=================================================="
echo " 羚牛氢能 - 全国氢能物流运营驾驶舱"
echo " 局域网 (LAN) 服务启动中..."
echo "=================================================="
IP_ADDR=$(ifconfig | grep "inet " | grep -v 127.0.0.1 | head -n 1 | awk '{print $2}')
PORT="${VEHICLE_MAP_PORT:-20800}"
echo "本机访问地址: http://localhost:${PORT}"
echo "局域网访问地址: http://${IP_ADDR}:${PORT}"
echo "=================================================="
exec python3 server.py