feat: 羚牛氢能全国运营驾驶舱 (Apple Restrained Design & 双语系统)

This commit is contained in:
kkfluous
2026-08-03 19:14:15 +08:00
commit d72f3442b2
8 changed files with 1426 additions and 0 deletions
Executable
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# 羚牛氢能驾驶舱 - 局域网本地部署启动脚本
echo "=================================================="
echo " 羚牛氢能 - 全国氢能物流运营驾驶舱"
echo " 局域网 (LAN) 服务启动中..."
echo "=================================================="
IP_ADDR=$(ifconfig | grep "inet " | grep -v 127.0.0.1 | head -n 1 | awk '{print $2}')
echo "本机访问地址: http://localhost:8080"
echo "局域网访问地址: http://${IP_ADDR}:8080"
echo "=================================================="
python3 -m http.server 8080