Files
QZMusic-Web/start.sh

28 lines
573 B
Bash
Executable File
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.
#!/bin/bash
# QZMusic-Web 启动脚本
# 端口10096
echo "=========================================="
echo " 启动 QZMusic-Web"
echo "=========================================="
echo ""
# 检查是否已安装依赖
if [ ! -d "node_modules" ]; then
echo "📦 依赖未安装,正在安装..."
npm install
if [ $? -ne 0 ]; then
echo "❌ 依赖安装失败!"
exit 1
fi
fi
echo "🚀 正在启动开发服务器..."
echo "🌐 访问地址: http://localhost:10096"
echo ""
echo "按 Ctrl+C 停止服务器"
echo ""
npm run dev