- Fix backend Dockerfile: install deps before copying source for proper layer caching (non-editable install) - Add ai_insights, ai_score, ai_score_reason, ai_cost_usd columns to initial Alembic migration so fresh Docker deploys have full schema - Add ANTHROPIC_API_KEY to docker-compose.yml, docker-compose.dev.yml, and .env.example - Remove accidental backend/=0.40 pip artifact file Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
334 B
Text
18 lines
334 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
|
|
|
|
# AI Design Analysis (optional — leave empty to disable)
|
|
ANTHROPIC_API_KEY=
|