Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ COSMOSDB_PARTITION_KEY="/id"

# SQL Database Settings
SQL_DATABASE_URI="sqlite:///template_langgraph.db"
# SQL_DATABASE_URI="postgresql://user:password@localhost:5432/db"

# ---------
# Utilities
Expand Down
12 changes: 12 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,15 @@ services:
- xpack.security.enabled=false
volumes:
- ./assets/es_data:/usr/share/elasticsearch/data
postgres:
image: postgres:17
container_name: postgres
ports:
- 5432:5432
volumes:
- ./assets/postgres_data:/var/lib/postgresql/data
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: password
POSTGRES_DB: db
restart: always
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ dependencies = [
"langgraph>=0.6.2",
"langgraph-supervisor>=0.0.29",
"openai>=1.98.0",
"psycopg2-binary>=2.9.10",
"pydantic-settings>=2.9.1",
"pypdf>=5.9.0",
"python-dotenv>=1.1.0",
Expand Down
57 changes: 57 additions & 0 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.