From 7c62577377e37815b8b41d727097d0a500258c91 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Thu, 11 Dec 2025 18:46:42 +0100 Subject: [PATCH] fix: use JSON array format for CORS_ORIGINS env var MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- stacks/tatlock.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacks/tatlock.yml b/stacks/tatlock.yml index d9c80cf..2b1a6ec 100644 --- a/stacks/tatlock.yml +++ b/stacks/tatlock.yml @@ -34,7 +34,7 @@ services: - REDIS_TIMEOUT=5 # Features - ENABLE_BENCHMARKS=true - - CORS_ORIGINS=* + - CORS_ORIGINS=["*"] - PYTHONPATH=/app volumes: