Generate custom UIs to display live data from any website.
cd backend
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env # Fill in your API keys
uvicorn app.main:app --reload --port 8000cd frontend
npm install
npm run dev- Backend: FastAPI + Browser Use + MiniMax
- Frontend: React + Vite + Tailwind
- Communication: WebSocket (live data) + REST (profile CRUD)