Full-stack application for predicting where humans look in images using DeepGaze saliency models. Includes heatmap overlays, gaze sequence prediction, hotspot detection, AOI analysis, rule-based insights, optional Claude AI design analysis, and professional PDF report generation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
42 lines
857 B
YAML
42 lines
857 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
ports:
|
|
- "5453:5432"
|
|
environment:
|
|
POSTGRES_USER: olivas
|
|
POSTGRES_PASSWORD: olivas
|
|
POSTGRES_DB: olivas
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U olivas"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
backend:
|
|
build: ./backend
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
DATABASE_URL: postgresql+asyncpg://olivas:olivas@postgres:5432/olivas
|
|
UPLOAD_DIR: /app/data/uploads
|
|
DEVICE: auto
|
|
CORS_ORIGINS: http://localhost:1577
|
|
volumes:
|
|
- uploads:/app/data/uploads
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
|
|
frontend:
|
|
build: ./frontend
|
|
ports:
|
|
- "1577:1577"
|
|
depends_on:
|
|
- backend
|
|
|
|
volumes:
|
|
pgdata:
|
|
uploads:
|