Skip to content

Commit

Permalink
Merge pull request #51 from THEGOODs-repo/ci/46
Browse files Browse the repository at this point in the history
๐Ÿ‘ท CI/CD: application.yml db ์ •๋ณด ์ˆ˜์ •
  • Loading branch information
Eunjin3395 authored Feb 5, 2024
2 parents e30ca06 + 2dd5743 commit 8a5b48d
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 8a5b48d

Please sign in to comment.