mirror of
https://github.com/wanglin2/mind-map.git
synced 2026-02-21 18:37:43 +08:00
18 lines
267 B
Bash
18 lines
267 B
Bash
#!/bin/sh
|
|
|
|
# 启动AI服务
|
|
node /app/web/scripts/ai.js &
|
|
AI_PID=$!
|
|
|
|
# 启动nginx
|
|
nginx -g 'daemon off;' &
|
|
NGINX_PID=$!
|
|
|
|
# 等待任意一个进程退出
|
|
wait $AI_PID
|
|
EXIT_CODE=$?
|
|
|
|
# 清理:停止另一个进程
|
|
kill $NGINX_PID 2>/dev/null || true
|
|
|
|
exit $EXIT_CODE |