Skip to content

Commit 61c90ab

Browse files
committed
fix:이메일 설정 변경
1 parent db95cd2 commit 61c90ab

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,8 @@ jobs:
190190
sed -i "s|image:.*${IMAGE_REPOSITORY}.*|image: ${IMAGE}|g" docker-compose.yml
191191
192192
echo "🚀 새 컨테이너 시작 중..."
193+
MAIL_USERNAME='${{ secrets.MAIL_USERNAME }}' \
194+
MAIL_PASSWORD='${{ secrets.MAIL_PASSWORD }}' \
193195
docker-compose up -d $CONTAINER_NAME
194196
195197
echo "🏥 헬스체크 중..."

back/.claude/settings.local.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(cat:*)"
5+
],
6+
"deny": [],
7+
"ask": []
8+
}
9+
}

docker-compose.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ services:
7878
- "8080:8080"
7979
environment:
8080
- SPRING_PROFILES_ACTIVE=prod
81+
- MAIL_USERNAME=${MAIL_USERNAME}
82+
- MAIL_PASSWORD=${MAIL_PASSWORD}
8183
networks:
8284
- app-network
8385
restart: unless-stopped

0 commit comments

Comments
 (0)