deer-flow/scripts/start-daemon.sh
greatmengqi ca2fb95ee6
Some checks are pending
Unit Tests / backend-unit-tests (push) Waiting to run
Lint Check / lint-frontend (push) Waiting to run
Lint Check / lint (push) Waiting to run
feat: unified serve.sh with gateway mode support (#1847)
2026-04-05 21:07:35 +08:00

9 lines
282 B
Bash
Executable file

#!/usr/bin/env bash
#
# start-daemon.sh — Start DeerFlow in daemon (background) mode
#
# Thin wrapper around serve.sh --daemon.
# Kept for backward compatibility.
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
exec "$REPO_ROOT/scripts/serve.sh" --dev --daemon "$@"