From cad1ca00c7cf0aaaf158e7ca8c780abfc40b5ebe Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Mon, 2 Mar 2026 17:46:39 +0800 Subject: [PATCH] Fix SECRET_KEY sentinel in backend/.env.example Align with config.py check so the fatal safety exit triggers correctly if this file is used verbatim in production. Co-Authored-By: Claude Opus 4.6 --- backend/.env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/.env.example b/backend/.env.example index 0f23dea..396bfaa 100644 --- a/backend/.env.example +++ b/backend/.env.example @@ -1,2 +1,2 @@ DATABASE_URL=postgresql+asyncpg://postgres:postgres@localhost:5432/umbra -SECRET_KEY=your-secret-key-change-in-production-use-a-long-random-string +SECRET_KEY=your-secret-key-change-in-production