Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
25 changes: 13 additions & 12 deletions src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
spring:
application:
name: codeplay
mail:
host: smtp.gmail.com
port: 587
username: ${SPRING_MAIL_USERNAME} # 이메일 계정
password: ${SPRING_MAIL_PASSWORD}
protocol: smtp
properties:
mail:
smtp:
auth: true
starttls:
enable: true

config:
import:
Expand Down Expand Up @@ -48,6 +36,19 @@ spring:
access-key: ${AWS_ACCESS_KEY_ID}
secret-key: ${AWS_SECRET_ACCESS_KEY}

mail:
host: smtp.gmail.com
port: 587
username: ${SPRING_MAIL_USERNAME} # 이메일 계정
password: ${SPRING_MAIL_PASSWORD}
protocol: smtp
properties:
mail:
smtp:
auth: true
starttls:
enable: true

s3:
bucket: ${S3_BUCKET}

Expand Down
25 changes: 13 additions & 12 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
spring:
application:
name: codeplay
mail:
host: smtp.gmail.com
port: 587
username: ${SPRING_MAIL_USERNAME} # 이메일 계정
password: ${SPRING_MAIL_PASSWORD}
protocol: smtp
properties:
mail:
smtp:
auth: true
starttls:
enable: true

config:
import:
Expand Down Expand Up @@ -40,6 +28,19 @@ spring:
use_sql_comments: true
default_batch_fetch_size: 1000 # 배치 크기 설정 (성능 최적화)

mail:
host: smtp.gmail.com
port: 587
username: ${SPRING_MAIL_USERNAME} # 이메일 계정
password: ${SPRING_MAIL_PASSWORD}
protocol: smtp
properties:
mail:
smtp:
auth: true
starttls:
enable: true

cloud:
aws:
region:
Expand Down