From 485a094955a8b133eb9b6eac764acaf0086a5a5e Mon Sep 17 00:00:00 2001 From: taek2222 Date: Sun, 28 Dec 2025 19:30:38 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20=EC=84=9C=EB=B2=84=20=ED=8A=9C?= =?UTF-8?q?=EB=8B=9D=20Yml=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- infra/buildspec.yml | 1 + src/main/resources/application.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/infra/buildspec.yml b/infra/buildspec.yml index b9c88f8..5ac70b9 100644 --- a/infra/buildspec.yml +++ b/infra/buildspec.yml @@ -15,6 +15,7 @@ phases: - echo "⚙️ [Pre Build Phase] 환경파일 생성 시작" - mkdir -p src/main/resources/firebase - echo "$SECRET_YML" | base64 -d > src/main/resources/application-secret.yml + - echo "$SEVER_YML" | base64 -d > src/main/resources/application-server.yml - echo "$FIREBASE_ADMINSDK_ACCOUNT_KEY" > src/main/resources/firebase/firebase-adminsdk-account.json - echo "✅ [Pre Build Phase] 완료" diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index ae88145..f20f2fb 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -18,7 +18,7 @@ spring: hibernate: ddl-auto: none profiles: - include: secret, monitoring + include: secret, monitoring, server lifecycle: # WAS 종료 대기 시간 15초로 설정 timeout-per-shutdown-phase: 15s From fbd0d8a22d1236758b39debdddc378891f54305c Mon Sep 17 00:00:00 2001 From: taek2222 Date: Sun, 28 Dec 2025 22:28:08 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20SERVER=20=EC=98=A4=ED=83=80=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- infra/buildspec.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/buildspec.yml b/infra/buildspec.yml index 5ac70b9..3bcb5ab 100644 --- a/infra/buildspec.yml +++ b/infra/buildspec.yml @@ -15,7 +15,7 @@ phases: - echo "⚙️ [Pre Build Phase] 환경파일 생성 시작" - mkdir -p src/main/resources/firebase - echo "$SECRET_YML" | base64 -d > src/main/resources/application-secret.yml - - echo "$SEVER_YML" | base64 -d > src/main/resources/application-server.yml + - echo "$SERVER_YML" | base64 -d > src/main/resources/application-server.yml - echo "$FIREBASE_ADMINSDK_ACCOUNT_KEY" > src/main/resources/firebase/firebase-adminsdk-account.json - echo "✅ [Pre Build Phase] 완료"