mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-04-25 11:18:22 +00:00
10 lines
282 B
Bash
Executable File
10 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 "$@"
|