The easiest way is to deploy using Docker:
-
Install Docker Desktop
-
Configure Environment Variables
cp env.example .env # Edit the .env file and fill in your API keys -
Start Services
# Mac/Linux ./docker-start.sh # Windows docker-start.bat # Or run manually docker compose up --build
-
Access the Application
- Frontend: http://localhost:3000
- Backend API: http://localhost:8123
📖 Detailed Docker Deployment Guide: See DOCKER_SETUP.md
cd backend
yarn install
yarn langgraph:devcd frontend
yarn install
yarn devbackend/- LangGraph backend service (ingestion_graph, retrieval_graph)frontend/- Next.js 14 frontend applicationdocker-compose.yml- Docker orchestration configurationDOCKER_SETUP.md- Detailed Docker deployment documentation