UI for langgraph_distributed_agent
agents-ui-demo.mp4
- Create a
.envfile in the project root:
DATABASE_URL="file:./dev.db"
REDIS_URL="redis://:password@localhost:6379/0"Make sure that REDIS_URL matches the environment variable used in langgraph_distributed_agent
If you are using MySQL, update schema.prisma by changing:
provider = "sqlite"
to:
provider = "mysql"
- Install dependencies:
pnpm install- Generate Prisma client:
npx prisma generate- Push the database schema:
npx prisma db push- Start the development server:
pnpm dev