From a3308441387a8fcb836c614f6849bdf69525056c Mon Sep 17 00:00:00 2001 From: Sidharth Prabhu Date: Tue, 4 Aug 2026 12:58:30 +0530 Subject: [PATCH] JWT Key added --- backend/src/main/resources/application.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main/resources/application.properties b/backend/src/main/resources/application.properties index 2d61b41b..3b13e068 100644 --- a/backend/src/main/resources/application.properties +++ b/backend/src/main/resources/application.properties @@ -20,7 +20,7 @@ spring.jpa.properties.hibernate.jdbc.time_zone=Asia/Kolkata # JWT — REQUIRED environment variables # MUST provide a secure random key (min 256-bit) # ============================================================ -app.jwt.secret=${JWT_SECRET:default_jwt_secret_key_which_is_at_least_32_bytes_long} +app.jwt.secret=${JWT_SECRET:f4d9b0d81b6d6ef8c8d6f35f4fb2bb2b9e2fd6f7d20a0c4d0b6d97c93e4f6f7a9d2b8f4a7e1c5d9f3b6a2c8e4f7d1b9c0a6e3d8f5b2c7a1e9d4f6c8b0a3e7f1} app.jwt.expiration-ms=86400000 # ============================================================