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>
15 lines
255 B
Text
15 lines
255 B
Text
# Database
|
|
DATABASE_URL=postgresql+asyncpg://olivas:olivas@localhost:5453/olivas
|
|
|
|
# Storage
|
|
UPLOAD_DIR=./data/uploads
|
|
|
|
# ML Model
|
|
DEVICE=auto # auto | cpu | cuda
|
|
|
|
# CORS
|
|
CORS_ORIGINS=http://localhost:1577
|
|
|
|
# Server
|
|
BACKEND_HOST=0.0.0.0
|
|
BACKEND_PORT=8000
|