Files
hometown/start.sh
2026-03-07 23:47:29 +08:00

15 lines
370 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env bash
# 联合启动:静态 + API单端口默认 3000
# 在项目根目录执行: ./start.sh 或 PORT=8080 ./start.sh
set -e
cd "$(dirname "$0")"
PORT="${PORT:-3000}"
export PORT
echo "[720yun-offline] 安装依赖..."
npm install --no-audit --no-fund
echo "[720yun-offline] 启动(静态+API http://0.0.0.0:${PORT}"
exec node server.js