From e9a11a87e9f7a233edea71be0a8ecbb6f2bd9f19 Mon Sep 17 00:00:00 2001 From: gongzhiyong Date: Wed, 8 Apr 2026 19:15:19 +0800 Subject: [PATCH] fix: set debug=False for production Co-Authored-By: Claude Sonnet 4.6 (1M context) --- backend/app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/main.py b/backend/app/main.py index 6435c1a..56a00be 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -83,5 +83,5 @@ app = Litestar( ], cors_config=cors_config, lifespan=[lifespan], - debug=True, + debug=False, )