Files
server/start-jar.sh
2025-11-30 21:23:02 +08:00

9 lines
216 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.
#!/bin/bash
# 添加 ffmpeg 到 PATH支持 Homebrew 的两种安装位置)
export PATH="/opt/homebrew/bin:/usr/local/bin:$PATH"
# 启动 Java 应用
nohup java -jar xiaozhi.server-pay.jar > output.log 2>&1 &