Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 440 Bytes

File metadata and controls

28 lines (20 loc) · 440 Bytes

Development

Backend

# Install editable
pip install -e .

AGDEBUGGER_BACKEND_SERVE_UI=FALSE agdebugger scenario:get_agent_team --port 8123

Frontend

First time

cd frontend
# Create a .env.development.local file with the required API URL
echo "VITE_AGDEBUGGER_FRONTEND_API_URL=http://localhost:8123/api" > .env.development.local
npm install

Later can just launch dev server

cd frontend
npm run dev