Skip to content

Commit b2d7985

Browse files
Update start.sh with source venv/bin/activate
1 parent 9377512 commit b2d7985

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

start.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ FRONTEND_PID=$!
6060
# Start FastAPI backend
6161
echo -e "${BLUE}Starting FastAPI backend...${NC}"
6262
cd backend
63+
source venv/bin/activate
6364
uvicorn app.main:app --host 0.0.0.0 --port 24125 --reload > ../logs/backend.log 2>&1 &
6465
BACKEND_PID=$!
6566
cd "$ROOT_DIR"
@@ -112,4 +113,4 @@ else
112113
echo -e "${RED}Failed to start all services${NC}"
113114
kill $FRONTEND_PID $BACKEND_PID $MCP_PID 2>/dev/null
114115
exit 1
115-
fi
116+
fi

0 commit comments

Comments
 (0)