Skip to content

Commit

Permalink
👷 CI/CD: application.yml db 정보 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Eunjin3395 committed Feb 5, 2024
1 parent 0fce9e1 commit 2dd5743
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ spring:
prefix: classpath:/templates/
suffix: .html
datasource:
url: jdbc:h2:tcp://localhost/~/thegoods
username: sa
password:
driver-class-name: org.h2.Driver
url: ${DB_URL}
username: ${DB_USERNAME}
password: ${DB_PASSWORD}
driver-class-name: com.mysql.cj.jdbc.Driver
mail:
host: smtp.gmail.com
port: 587
Expand All @@ -32,6 +32,7 @@ spring:
hibernate:
ddl-auto: update
properties:
dialect: org.hibernate.dialect.MySQL8InnoDBDialect
hibernate:
# show_sql: true
format_sql: true
Expand Down

0 comments on commit 2dd5743

Please sign in to comment.