Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions infra/buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link

Copilot AI Dec 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The environment variable name appears to have a typo: "SEVER_YML" should be "SERVER_YML". This will cause the build to fail as the environment variable won't be found, resulting in an empty application-server.yml file.

Suggested change
- echo "$SEVER_YML" | base64 -d > src/main/resources/application-server.yml
- echo "$SERVER_YML" | base64 -d > src/main/resources/application-server.yml

Copilot uses AI. Check for mistakes.
- echo "$FIREBASE_ADMINSDK_ACCOUNT_KEY" > src/main/resources/firebase/firebase-adminsdk-account.json
- echo "✅ [Pre Build Phase] 완료"

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down