mirror of
https://git.mirrors.martin98.com/https://github.com/bytedance/deer-flow
synced 2025-08-20 19:29:09 +08:00
17 lines
499 B
Bash
Executable File
17 lines
499 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Start both of DeerFlow's backend and web UI server.
|
|
# If the user presses Ctrl+C, kill them both.
|
|
|
|
if [ "$1" = "--dev" -o "$1" = "-d" -o "$1" = "dev" -o "$1" = "development" ]; then
|
|
echo -e "Starting DeerFlow in [DEVELOPMENT] mode...\n"
|
|
uv run server.py --reload & SERVER_PID=$$!
|
|
cd web && pnpm dev & WEB_PID=$$!
|
|
trap "kill $$SERVER_PID $$WEB_PID" SIGINT SIGTERM
|
|
wait
|
|
else
|
|
echo -e "Starting DeerFlow in [PRODUCTION] mode...\n"
|
|
uv run server.py
|
|
cd web && pnpm start
|
|
fi
|