Full-stack application combining LlamaIndex vector search with Neo4j knowledge graph (GraphRAG) for answering queries about Netflix marketing materials. Flask/Hypercorn backend with custom ReAct agent, React frontend. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
388 B
YAML
18 lines
388 B
YAML
version: '3'
|
|
services:
|
|
mongodb:
|
|
image: mongo:latest
|
|
container_name: mongodb
|
|
ports:
|
|
- "27017:27017"
|
|
# Comment out authentication for local development
|
|
# environment:
|
|
# MONGO_INITDB_ROOT_USERNAME: netflix
|
|
# MONGO_INITDB_ROOT_PASSWORD: netflix
|
|
volumes:
|
|
- mongodb_data:/data/db
|
|
restart: always
|
|
|
|
volumes:
|
|
mongodb_data:
|
|
driver: local
|