mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-16 03:14:45 +08:00
feat: enable public skills by default
This commit is contained in:
@@ -8,6 +8,12 @@ gateway:
|
||||
uv run uvicorn src.gateway.app:app --host 0.0.0.0 --port 8001
|
||||
|
||||
nginx:
|
||||
@echo "Stopping existing nginx if any..."
|
||||
@-nginx -c $(PWD)/../nginx.conf -p $(PWD)/.. -s quit 2>/dev/null || true
|
||||
@sleep 1
|
||||
@-pkill -9 nginx 2>/dev/null || true
|
||||
@sleep 1
|
||||
@echo "Starting nginx..."
|
||||
nginx -c $(PWD)/../nginx.conf -p $(PWD)/..
|
||||
|
||||
serve:
|
||||
@@ -16,6 +22,8 @@ serve:
|
||||
@-pkill -f "uvicorn src.gateway.app:app" 2>/dev/null || true
|
||||
@-nginx -c $(PWD)/../nginx.conf -p $(PWD)/.. -s quit 2>/dev/null || true
|
||||
@sleep 1
|
||||
@-pkill -9 nginx 2>/dev/null || true
|
||||
@sleep 1
|
||||
@echo "Starting services..."
|
||||
@trap 'kill 0' EXIT; \
|
||||
uv run langgraph dev --no-browser --allow-blocking --no-reload & \
|
||||
|
||||
Reference in New Issue
Block a user