feat: implement mvp with email-first login flow and langgraph architecture

This commit is contained in:
Yunxiao Xu
2026-02-09 23:22:30 -08:00
parent af227d40e6
commit 5a943b902a
79 changed files with 8200 additions and 1 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
services:
history-db:
image: postgres:16
container_name: ea-history-db
restart: unless-stopped
environment:
POSTGRES_DB: ${HISTORY_DB_NAME:-ea_history}
POSTGRES_USER: ${HISTORY_DB_USER:-user}
POSTGRES_PASSWORD: ${HISTORY_DB_PSWD:-password}
ports:
- "5433:5432"
volumes:
- ./postgres-data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
interval: 10s
timeout: 5s
retries: 5