From 997f0b23af86473da941d3e1c6f4936ad6ddcd38 Mon Sep 17 00:00:00 2001 From: Muhammad Raihan Akbar <ianakbar711@gmail.com> Date: Thu, 6 Mar 2025 21:00:30 +0700 Subject: [PATCH] [REFACTOR] Configure Secret or Env instead of hardcoded key --- src/main/resources/application.properties | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 498486c..b8b6b68 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,4 +1,5 @@ spring.application.name=authentication spring.profiles.active=${PRODUCTION:dev} google.client.id=${GOOGLE_CLIENT_ID:default} -google.client.secret=${GOOGLE_CLIENT_SECRET:default} \ No newline at end of file +google.client.secret=${GOOGLE_CLIENT_SECRET:default} +jwt.secret=${JWT_SECRET:biggerboysandstolensweetheartsss} \ No newline at end of file -- GitLab