Skip to content

Commit

Permalink
[chore] : application.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chahyunsoo committed Feb 24, 2024
1 parent 59215ee commit 2b9b96a
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
spring:
data:
redis:
host: ${REDIS_URL}
host: redis://:pc9a6abae3c96cca70270aa286473610bd4e6ae16bfa616c77990ba521d118cac@ec2-18-214-24-7.compute-1.amazonaws.com:29079


datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://${DATABASE_URL}:3306/isa-zip?serverTimezone=Asia/Seoul&characterEncoding=UTF-8
username: ${DATABASE_HOST}
password: ${DATABASE_PW}
url: jdbc:mysql://db-isa-zip.cm3ah7zzqkkw.ap-northeast-2.rds.amazonaws.com:3306/isa-zip?serverTimezone=Asia/Seoul&characterEncoding=UTF-8
username: root
password: isazip1234

# datasource:
# url: jdbc:mysql://localhost:3306/
Expand All @@ -20,6 +20,7 @@ spring:
jpa:
hibernate:
ddl-auto: update
dialect: org.hibernate.dialect.MySQL5InnoDBDialect
properties:
hibernate:
show_sql: true
Expand All @@ -28,8 +29,8 @@ spring:
mail:
host: smtp.gmail.com
port: 587
username: ${MAIL_USERNAME}
password: ${MAIL_PASSWORD}
username: [email protected]
password: zqztucuwyjigoqzh
properties:
mail:
smtp:
Expand All @@ -43,13 +44,13 @@ spring:
auth-code-expiration-millis: 1800000 # 30분

jwt:
access-expired-in: ${JWT_ACCESS_EXPIRED_IN}
refresh-expired-in: ${JWT_REFRESH_EXPIRED_IN}
secret: ${JWT_SECRET}
access-expired-in: 1800000
refresh-expired-in: 1209600000
secret: 7yzz5mTOL5q593FIsnHD6vrJvz++HsB0NS2DW4AN7RA6FS8/teTKubOyBsq0nDoLxDiYsauvSdp+mxyYIxog


kakao:
api-key: ${KAKAO_API_KEY}
api-key: d7844c1ce3d9024524e69fea4e1635a9
springdoc:
swagger-ui:
groups-order : DESC
Expand Down Expand Up @@ -82,6 +83,7 @@ cloud:
stack:
auto: false
credentials:
accessKey: ${AWS_ACCESS_KEY_ID}
secretKey: ${AWS_SECRET_ACCESS_KEY}
accessKey: AKIARABORFO5NZK7WR5I
secretKey: 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


0 comments on commit 2b9b96a

Please sign in to comment.