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>
16 lines
353 B
YAML
16 lines
353 B
YAML
services:
|
|
backend:
|
|
build:
|
|
context: ./backend
|
|
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
|
|
volumes:
|
|
- ./backend:/app
|
|
- uploads:/app/data/uploads
|
|
|
|
frontend:
|
|
build:
|
|
context: ./frontend
|
|
command: npm run dev -- --host 0.0.0.0
|
|
volumes:
|
|
- ./frontend:/app
|
|
- /app/node_modules
|