Run the LangGraph Server and Frontend
mainOpen Canvas requires both a LangGraph server (for agents) and a web frontend to be running simultaneously.
1. Start LangGraph Server
Navigate to apps/agents and run the development command. This uses the LangGraph CLI to host the graph locally.
cd apps/agents
yarn devThe server typically runs on http://localhost:54367.
2. Start Frontend
In a new terminal, navigate to apps/web and start the web application.
cd apps/web
yarn devThe frontend typically runs on http://localhost:3000.
Troubleshooting Ports
If you change the LangGraph port using the --port <PORT> flag, you must also update the client by setting the LANGGRAPH_API_URL environment variable in apps/web/.env or updating the fallback value in constants.ts.