CI / build (push) Successful in 4m26s
Adds a Postgres-backed quotes domain (poems/quotes/favorites) exposed as five agent-native actions (list-quotes, get-random-quote, create-quote, toggle-favorite, list-favorites) callable from both chat and the React UI via useActionQuery/useActionMutation. Moves the primary UI from chat to a mobile-first Quotes/Favorites experience (chat moves to /chat), adds manual OpenTelemetry instrumentation exporting traces/metrics/logs over OTLP, and wires a local Docker Postgres for shared state.
22 lines
536 B
YAML
22 lines
536 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
container_name: verse-quote-app-postgres
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_DB: versequote
|
|
POSTGRES_USER: versequote
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
ports:
|
|
- "127.0.0.1:5434:5432"
|
|
volumes:
|
|
- verse-quote-app-pgdata:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U versequote -d versequote"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 10
|
|
|
|
volumes:
|
|
verse-quote-app-pgdata:
|