[全量] 初始化项目代码、配置、文档及Agent协同harness

This commit is contained in:
2026-04-02 11:36:05 +08:00
parent 0553309cdf
commit 87e571d9ec
1133 changed files with 221948 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#!/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 ""