- Admin CMS: announcements, feature flags, email templates, AI prompts, SMTP, model management, reset-to-defaults - Save/resume encounter progress with 7-day auto-expiry and patient labels - Inline searchable load popover (replaces settings-modal redirect) - User memory/template system (physical exam, ROS, encounter format, etc.) - SSHADESS psychosocial screening form (8 domains, listen-in recording) - Well visit note generation with vitals, vaccines, screenings, SSHADESS - Interactive screenings/vaccines status buttons (Done/Refused/Already Given/N/A) - ROS 15-system checklist + PE 17-system checklist in well visit note tab - ICD-10 diagnoses tag picker (28 common pediatric codes + free text) - Simple sick visit tab: chief complaint, inferred ROS (4) + PE (7), diagnoses, generate note - Settings converted from modal to full-page tab - Fix: /api/models moved before authenticated routes (was returning 401 → empty model selector) - Fix: getUserMemoryContext always fetches from API regardless of cache state - Pause/resume recording on all recording tabs - Site-level SMTP config stored in DB; ElevenLabs TTS with browser fallback
41 lines
938 B
YAML
41 lines
938 B
YAML
services:
|
|
pediatric-scribe:
|
|
build: .
|
|
ports:
|
|
- "3552:3000"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- scribe-logs:/app/data/logs
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
restart: unless-stopped
|
|
container_name: pediatric-ai-scribe
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000/api/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 5
|
|
start_period: 20s
|
|
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
environment:
|
|
POSTGRES_DB: pedscribe
|
|
POSTGRES_USER: pedscribe
|
|
POSTGRES_PASSWORD: ${DB_PASSWORD:?set DB_PASSWORD}
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
container_name: pedscribe-db
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U pedscribe"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
start_period: 10s
|
|
|
|
volumes:
|
|
pgdata:
|
|
scribe-logs:
|