We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9377512 commit b2d7985Copy full SHA for b2d7985
start.sh
@@ -60,6 +60,7 @@ FRONTEND_PID=$!
60
# Start FastAPI backend
61
echo -e "${BLUE}Starting FastAPI backend...${NC}"
62
cd backend
63
+source venv/bin/activate
64
uvicorn app.main:app --host 0.0.0.0 --port 24125 --reload > ../logs/backend.log 2>&1 &
65
BACKEND_PID=$!
66
cd "$ROOT_DIR"
@@ -112,4 +113,4 @@ else
112
113
echo -e "${RED}Failed to start all services${NC}"
114
kill $FRONTEND_PID $BACKEND_PID $MCP_PID 2>/dev/null
115
exit 1
-fi
116
+fi
0 commit comments