Files
gangyan/chat_web_front/start-background.sh

24 lines
612 B
Bash
Executable File
Raw Permalink 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
# Vite 开发服务器后台启动脚本
cd "$(dirname "$0")"
echo "=========================================="
echo "启动 Chat Web Front (后台运行)"
echo "=========================================="
echo ""
echo "前端端口: 3000"
echo "访问地址: http://localhost:3000/metalinfo"
echo "日志文件: nohup.out"
echo ""
echo "停止服务: pkill -f 'vite' 或 kill <PID>"
echo "=========================================="
echo ""
# 使用 nohup 后台运行
nohup npm run dev > nohup.out 2>&1 &
echo "服务已在后台启动PID: $!"
echo "查看日志: tail -f nohup.out"
echo ""