fix: use JSON array format for CORS_ORIGINS env var

Pydantic settings expects list[str] fields as JSON arrays, not plain strings.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-11 18:46:42 +01:00
co-authored by Claude Opus 4.5
parent 235b694356
commit 7c62577377
+1 -1
View File
@@ -34,7 +34,7 @@ services:
- REDIS_TIMEOUT=5
# Features
- ENABLE_BENCHMARKS=true
- CORS_ORIGINS=*
- CORS_ORIGINS=["*"]
- PYTHONPATH=/app
volumes: